Merge branch 'master' of github.com:ajaxorg/ace
Conflicts: build/demo/kitchen-sink.js build/kitchen-sink.html
This commit is contained in:
commit
7fd597a1b0
8 changed files with 8 additions and 8 deletions
|
|
@ -10631,7 +10631,7 @@ var EditSession = function(text, mode) {
|
|||
} else {
|
||||
lastRow = firstRow;
|
||||
}
|
||||
len = e.data.lines.length;
|
||||
len = e.data.lines ? e.data.lines.length : lastRow - firstRow;
|
||||
} else {
|
||||
len = lastRow - firstRow;
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
Ace
|
||||
version 0.2.0
|
||||
commit 314b95eb78f44270330a61883bc320735697b7af
|
||||
commit 3a0ec51aef11f74857b6a285b9c36a0b9118ca89
|
||||
|
||||
|
||||
-->
|
||||
|
|
|
|||
|
|
@ -9360,7 +9360,7 @@ var EditSession = function(text, mode) {
|
|||
} else {
|
||||
lastRow = firstRow;
|
||||
}
|
||||
len = e.data.lines.length;
|
||||
len = e.data.lines ? e.data.lines.length : lastRow - firstRow;
|
||||
} else {
|
||||
len = lastRow - firstRow;
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -9352,7 +9352,7 @@ var EditSession = function(text, mode) {
|
|||
} else {
|
||||
lastRow = firstRow;
|
||||
}
|
||||
len = e.data.lines.length;
|
||||
len = e.data.lines ? e.data.lines.length : lastRow - firstRow;
|
||||
} else {
|
||||
len = lastRow - firstRow;
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1021,7 +1021,7 @@ var EditSession = function(text, mode) {
|
|||
} else {
|
||||
lastRow = firstRow;
|
||||
}
|
||||
len = e.data.lines.length;
|
||||
len = e.data.lines ? e.data.lines.length : lastRow - firstRow;
|
||||
} else {
|
||||
len = lastRow - firstRow;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue