Upgrade to xinha svn head to fix issues with xinha editors not appearing in Firefox 1.5

This commit is contained in:
Chris Morgan
2005-12-07 03:37:36 +00:00
committed by WineHQ
parent 369b40b046
commit 8786179180
175 changed files with 2371 additions and 1919 deletions

View File

@@ -25,7 +25,7 @@ function DynamicCSS(editor, args) {
};
cfg.registerDropdown(css_class);
cfg.addToolbarElement(["T[CSS]", "DynamicCSS-class", "separator"] , "formatblock", -1);
};
}
DynamicCSS.parseStyleSheet=function(editor){
iframe = editor._iframe.contentWindow.document;
@@ -65,7 +65,7 @@ DynamicCSS.parseStyleSheet=function(editor){
}
}
DynamicCSS.cssArray=cssArray;
}
};
DynamicCSS.applyCSSRule=function(cssRules,cssArray){
for(rule in cssRules){
@@ -106,7 +106,7 @@ DynamicCSS.applyCSSRule=function(cssRules,cssArray){
}
}
return cssArray;
}
};
DynamicCSS._pluginInfo = {
name : "DynamicCSS",
@@ -121,7 +121,7 @@ DynamicCSS._pluginInfo = {
DynamicCSS.prototype._lc = function(string) {
return HTMLArea._lc(string, 'DynamicCSS');
}
};
DynamicCSS.prototype.onSelect = function(editor, obj) {
var tbobj = editor._toolbarObjects[obj.id];
@@ -164,7 +164,7 @@ DynamicCSS.prototype.reparseTimer = function(editor, obj, instance) {
},DynamicCSS.parseCount*1000);
DynamicCSS.parseCount=DynamicCSS.parseCount*2;
}
}
};
DynamicCSS.prototype.updateValue = function(editor, obj) {
cssArray=DynamicCSS.cssArray;
@@ -234,4 +234,4 @@ DynamicCSS.prototype.updateValue = function(editor, obj) {
if(select.length>1) select.disabled=false;
else select.disabled=true;
}
};
};