Removed trailing , that broke IE7
This commit is contained in:
parent
9e70313c0d
commit
9a6fe31419
1 changed files with 5 additions and 5 deletions
|
@ -16,8 +16,8 @@
|
||||||
|
|
||||||
function OUTER(gscope) {
|
function OUTER(gscope) {
|
||||||
|
|
||||||
var DEBUG=true;//$$ build script replaces the string "var DEBUG=true;//$$" with "var DEBUG=false;"
|
var DEBUG=false;//$$ build script replaces the string "var DEBUG=true;//$$" with "var DEBUG=false;"
|
||||||
|
// changed to false
|
||||||
var isSetUp = false;
|
var isSetUp = false;
|
||||||
|
|
||||||
var THE_TAB = ' ';//4
|
var THE_TAB = ' ';//4
|
||||||
|
@ -768,7 +768,7 @@ function OUTER(gscope) {
|
||||||
else {
|
else {
|
||||||
setAttributeOnSelection('author', '');
|
setAttributeOnSelection('author', '');
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
function execCommand(cmd) {
|
function execCommand(cmd) {
|
||||||
|
@ -1312,7 +1312,7 @@ function OUTER(gscope) {
|
||||||
|
|
||||||
isTimeUp = (isTimeUp || function() { return false; });
|
isTimeUp = (isTimeUp || function() { return false; });
|
||||||
|
|
||||||
if (DEBUG && top.DONT_INCORP || top.DEBUG_DONT_INCORP) return false;
|
if (DEBUG && window.DONT_INCORP || window.DEBUG_DONT_INCORP) return false;
|
||||||
|
|
||||||
var p = PROFILER("incorp", false);
|
var p = PROFILER("incorp", false);
|
||||||
|
|
||||||
|
@ -2999,7 +2999,7 @@ function OUTER(gscope) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleKeyEvent(evt) {
|
function handleKeyEvent(evt) {
|
||||||
if (DEBUG && top.DONT_INCORP) return;
|
// if (DEBUG && window.DONT_INCORP) return;
|
||||||
|
|
||||||
if (! isEditable) return;
|
if (! isEditable) return;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue