Skip to content
This repository has been archived by the owner on Jan 6, 2023. It is now read-only.

Commit

Permalink
Merge pull request #112 from Jinqn/dev-1.3.6
Browse files Browse the repository at this point in the history
Dev 1.3.6 修改版本号,修改bugs
  • Loading branch information
campaign committed Dec 24, 2013
2 parents 5adf5c8 + 74a5e97 commit 0aecbc4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion _examples/sectiondemo.html
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ <h1>目录大纲demo</h1>
function getSubStr(s,l){
var i=0,len=0;
for(i;i<s.length;i++){
if(s[i].match(/[^\x00-\xff]/g)!=null){
if(s.charAt(i).match(/[^\x00-\xff]/g)!=null){
len+=2;
}else{
len++;
Expand Down
2 changes: 1 addition & 1 deletion dialogs/background/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@
item.selected = (align == item.getAttribute('value') ? 'selected':false);
});
}
if(x && y) {
if(x || y) {
$G('x').value = parseInt(x) || 0;
$G('y').value = parseInt(y) || 0;
}
Expand Down
2 changes: 1 addition & 1 deletion lang/en/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ UE.I18N['en'] = {
'static':{
'lang_input_about':'About',
'lang_input_shortcuts':'Shortcuts',
'lang_input_version':'Version:1.3.5',
'lang_input_version':'Version:1.3.6',
'lang_input_introduction':"UEditor is developed by Baidu Co.ltd. It is lightweight, customizable , focusing on user experience and etc. , UEditor is based on open source BSD license , allowing free use and redistribution.",
'lang_Txt_shortcuts':'Shortcuts',
'lang_Txt_func':'Function',
Expand Down
2 changes: 1 addition & 1 deletion lang/zh-cn/zh-cn.js
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ UE.I18N['zh-cn'] = {
'static':{
'lang_input_about':'关于UEditor',
'lang_input_shortcuts':'快捷键',
'lang_input_version':'版本:1.3.5',
'lang_input_version':'版本:1.3.6',
'lang_input_introduction':'UEditor是由百度web前端研发部开发的所见即所得富文本web编辑器,具有轻量,可定制,注重用户体验等特点。开源基于BSD协议,允许自由使用和修改代码。',
'lang_Txt_shortcuts':'快捷键',
'lang_Txt_func':'功能',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ueditor",
"description": "UEditor富文本web编辑器",
"version": "1.3.5",
"version": "1.3.6",
"homepage": "http://ueditor.baidu.com/",
"dependencies": {
"grunt": "~0.4.1",
Expand Down

0 comments on commit 0aecbc4

Please sign in to comment.