summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwjames5 <will@tekimaki.com>2009-10-08 00:45:03 +0000
committerwjames5 <will@tekimaki.com>2009-10-08 00:45:03 +0000
commit42f02b7fa4bddb2ec6c94eca57c8fdd89d21dc7b (patch)
treede0bf0bb4ded6974433b4dde7d9cf915bc73b052
parent0aaf50bd086528d7cdeb69264d2da585736b9e00 (diff)
downloadutil-42f02b7fa4bddb2ec6c94eca57c8fdd89d21dc7b.tar.gz
util-42f02b7fa4bddb2ec6c94eca57c8fdd89d21dc7b.tar.bz2
util-42f02b7fa4bddb2ec6c94eca57c8fdd89d21dc7b.zip
remove FCKeditorOnComplete - no known use of it in bitweaver and shouldnt be here anyway
-rw-r--r--javascript/bitweaver.js14
1 files changed, 1 insertions, 13 deletions
diff --git a/javascript/bitweaver.js b/javascript/bitweaver.js
index 264f752..9955e96 100644
--- a/javascript/bitweaver.js
+++ b/javascript/bitweaver.js
@@ -1,4 +1,4 @@
-// $Header: /cvsroot/bitweaver/_bit_util/javascript/bitweaver.js,v 1.49 2009/07/13 01:44:25 spiderr Exp $
+// $Header: /cvsroot/bitweaver/_bit_util/javascript/bitweaver.js,v 1.50 2009/10/08 00:45:03 wjames5 Exp $
// please modify this file and leave plenty of comments. This file will be
// compressed automatically. Please make sure you only use comments beginning
@@ -23,15 +23,6 @@ BitBase = {
self.setCookie("javascript_enabled", "y");
},
- // TODO why do we need an instance if we do nothing with it? why is this here anyway instead of in fck
- // This function is called by FCKEditor when/if it is loaded.
- "FCKeditorOnComplete":function( editorInstance )
- {
- // We note that it is loaded so switchEditors doesn't throw an error
- // before the API object is created.
- document.FCKEditorLoaded = true;
- },
-
// Adds a function to be called at page load time
"addLoadHook": function(func) {
if ( typeof window.addEventListener != "undefined" ) {
@@ -1144,9 +1135,6 @@ function setSomeElement(elementId, strng) {
}
// NOTICE: ALL the following are deprecated. See pass through call for replacement
-function FCKeditor_OnComplete( editorInstance ){
- BitBase.FCKeditorOnComplete(editorInstance);
-}
function addLoadHook(func) {
BitBase.addLoadHook(func);
}