Browse Source

编辑器中无效的按钮

luyanan 7 years ago
parent
commit
436fc74fd0
4 changed files with 34 additions and 30 deletions
  1. 4 0
      about.html
  2. 14 14
      js/ueditor/lang/en/en.js
  3. 15 15
      js/ueditor/ueditor.all.js
  4. 1 1
      js/ueditor/ueditor.config.js

+ 4 - 0
about.html

@ -23,6 +23,10 @@
23 23
			<div class="single-column">
24 24
	            <div class="single-white-wrap">
25 25
	                <h2 class="faq-title">关于我们</h2>
26
	                <div class="faq-content">
27
	                	<h3 class="faq-sub-title">北京科袖科技有限公司(简称科袖科技),成立于2016年6月1日,致力于企业和专家的合作对接、科技成果转化、研发资源共享。</h3>
28
	                    <p>旗下拥有「科袖网」和「科袖app」两款产品。</p>
29
	                </div>
26 30
	                <div class="faq-content">
27 31
	                	<h3 class="faq-sub-title">「科袖」是一个创新的研发资源共享及科技成果转化平台。</h3>
28 32
	                    <p>我们致力于帮助企业在研发过程中,找到能解决问题的专家;让专家的知识、技能、经验、成果和身边的仪器设备,更有效地帮助企业进行研发,让专家的科研价值变现。</p>

+ 14 - 14
js/ueditor/lang/en/en.js

@ -28,24 +28,24 @@ UE.I18N['en'] = {
28 28
        'music':'Music', 'charts': 'charts','drafts': 'Load from Drafts'
29 29
    },
30 30
    'insertorderedlist':{
31
        'num':'1,2,3...',
32
        'num1':'1),2),3)...',
33
        'num2':'(1),(2),(3)...',
34
        'cn':'一,二,三....',
35
        'cn1':'一),二),三)....',
36
        'cn2':'(一),(二),(三)....',
31
//      'num':'1,2,3...',
32
//      'num1':'1),2),3)...',
33
//      'num2':'(1),(2),(3)...',
34
//      'cn':'一,二,三....',
35
//      'cn1':'一),二),三)....',
36
//      'cn2':'(一),(二),(三)....',
37 37
        'decimal':'1,2,3...',
38
        'lower-alpha':'a,b,c...',
39
        'lower-roman':'i,ii,iii...',
40
        'upper-alpha':'A,B,C...',
41
        'upper-roman':'I,II,III...'
38
//      'lower-alpha':'a,b,c...',
39
//      'lower-roman':'i,ii,iii...',
40
//      'upper-alpha':'A,B,C...',
41
//      'upper-roman':'I,II,III...'
42 42
    },
43 43
    'insertunorderedlist':{
44
        'circle':'○ Circle',
44
//      'circle':'○ Circle',
45 45
        'disc':'● Circle dot',
46
        'square':'■ Rectangle ',
47
        'dash' :'- Dash',
48
        'dot' : '。dot'
46
//      'square':'■ Rectangle ',
47
//      'dash' :'- Dash',
48
//      'dot' : '。dot'
49 49
    },
50 50
    'paragraph':{'p':'Paragraph', 'h1':'Title 1', 'h2':'Title 2', 'h3':'Title 3', 'h4':'Title 4', 'h5':'Title 5', 'h6':'Title 6'},
51 51
    'fontfamily':{

+ 15 - 15
js/ueditor/ueditor.all.js

@ -14953,24 +14953,24 @@ UE.plugins['list'] = function () {
14953 14953
    me.setOpt( {
14954 14954
        'autoTransWordToList':false,
14955 14955
        'insertorderedlist':{
14956
            'num':'',
14957
            'num1':'',
14958
            'num2':'',
14959
            'cn':'',
14960
            'cn1':'',
14961
            'cn2':'',
14956
//          'num':'',
14957
//          'num1':'',
14958
//          'num2':'',
14959
//          'cn':'',
14960
//          'cn1':'',
14961
//          'cn2':'',
14962 14962
            'decimal':'',
14963
            'lower-alpha':'',
14964
            'lower-roman':'',
14965
            'upper-alpha':'',
14966
            'upper-roman':''
14963
//          'lower-alpha':'',
14964
//          'lower-roman':'',
14965
//          'upper-alpha':'',
14966
//          'upper-roman':''
14967 14967
        },
14968 14968
        'insertunorderedlist':{
14969
            'circle':'',
14969
//          'circle':'',
14970 14970
            'disc':'',
14971
            'square':'',
14972
            'dash' : '',
14973
            'dot':''
14971
//          'square':'',
14972
//          'dash' : '',
14973
//          'dot':''
14974 14974
        },
14975 14975
        listDefaultPaddingLeft : '30',
14976 14976
        listiconpath : 'http://bs.baidu.com/listicon/',
@ -25996,7 +25996,7 @@ UE.ui = baidu.editor.ui = {};
25996 25996
                '<div class="edui-box edui-icon"></div>' +
25997 25997
                '</div>' +
25998 25998
                '<div class="edui-box edui-splitborder"></div>' +
25999
                '<div class="edui-box edui-arrow" onclick="$$._onArrowClick();"></div>' +
25999
//              '<div class="edui-box edui-arrow" onclick="$$._onArrowClick();"></div>' +
26000 26000
                '</div></div></div>';
26001 26001
        },
26002 26002
        showPopup: function (){

+ 1 - 1
js/ueditor/ueditor.config.js

@ -36,7 +36,7 @@
36 36
        //工具栏上的所有的功能按钮和下拉框,可以在new编辑器的实例时选择自己需要的重新定义
37 37
        , toolbars: [[
38 38
            'fullscreen', 'source', '|', 'undo', 'redo', '|',
39
            'bold', 'italic', 'underline', '|',
39
            'bold', 'italic',/* 'underline',*/ '|',
40 40
            'insertorderedlist', 'insertunorderedlist', '|',
41 41
            'justifyleft', 'justifycenter', 'justifyright', 'justifyjustify', '|',
42 42
            'spechars', '|',