Changeset 498
- Timestamp:
- 2007-07-23 01:53:07 (3 years ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 17 modified
-
editor/fckeditor.html (modified) (1 diff)
-
editor/_source/fckscriptloader.js (modified) (1 diff)
-
_test/manual/fckcontextmenu/test1.htm (modified) (1 diff)
-
_test/manual/fckeditingarea/test1.html (modified) (1 diff)
-
_test/manual/fckeditorapi/test1_inner.html (modified) (1 diff)
-
_test/manual/fckkeystrokehandler/test1.html (modified) (1 diff)
-
_test/manual/fckmenublock/test1.html (modified) (1 diff)
-
_test/manual/fckpanel/test1.html (modified) (1 diff)
-
_test/manual/fckspecialcombo/test1.html (modified) (1 diff)
-
_test/manual/fcktoolbarbuttonui/test1.html (modified) (1 diff)
-
_test/manual/fcktoolbarfontsizecombo/test1.html (modified) (1 diff)
-
_test/manual/fcktoolbarpanelbutton/test1.html (modified) (1 diff)
-
_test/manual/fcktoolbar/test1.html (modified) (1 diff)
-
_test/manual/fcktools/addeventlistenerex.html (modified) (1 diff)
-
_test/manual/fcktools/createeventlistener.htm (modified) (1 diff)
-
_test/manual/fcktools/runfunction.html (modified) (1 diff)
-
_test/manual/fckxhtml/test1.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/fckeditor.html
r400 r498 39 39 function LoadScript( url ) 40 40 { 41 document.write( '<scr' + 'ipt type="text/javascript" src="' + url + '" onerror="alert(\'Error loading \' + this.src);"><\/scr' + 'ipt>' ) ;41 document.write( '<scr' + 'ipt type="text/javascript" src="' + url + '"><\/scr' + 'ipt>' ) ; 42 42 } 43 43 44 44 function LoadCss( url ) 45 45 { 46 document.write( '<link href="' + url + '" type="text/css" rel="stylesheet" onerror="alert(\'Error loading \' + this.src);"/>' ) ;46 document.write( '<link href="' + url + '" type="text/css" rel="stylesheet" />' ) ; 47 47 } 48 48 -
FCKeditor/trunk/editor/_source/fckscriptloader.js
r363 r498 72 72 FCKScriptLoader._LoadScript = function( scriptPathFromSource ) 73 73 { 74 document.write( '<script type="text/javascript" src="' + this.FCKeditorPath + 'editor/_source/' + scriptPathFromSource + '" onerror="alert(\'Error loading \' + scriptPathFromSource);"><\/script>' ) ;74 document.write( '<script type="text/javascript" src="' + this.FCKeditorPath + 'editor/_source/' + scriptPathFromSource + '"><\/script>' ) ; 75 75 } 76 76 -
FCKeditor/trunk/_test/manual/fckcontextmenu/test1.htm
r132 r498 58 58 function LoadScript( url ) 59 59 { 60 document.write( '<script type="text/javascript" src="' + url + '" onerror="alert(\'Error loading \' + this.src);"><\/script>' ) ;60 document.write( '<script type="text/javascript" src="' + url + '"><\/script>' ) ; 61 61 } 62 62 var sSuffix = /msie/.test( navigator.userAgent.toLowerCase() ) ? 'ie' : 'gecko' ; -
FCKeditor/trunk/_test/manual/fckeditingarea/test1.html
r363 r498 42 42 function LoadScript( url ) 43 43 { 44 document.write( '<script type="text/javascript" src="' + url + '" onerror="alert(\'Error loading \' + this.src);"><\/script>' ) ;44 document.write( '<script type="text/javascript" src="' + url + '"><\/script>' ) ; 45 45 } 46 46 var sSuffix = /msie/.test( navigator.userAgent.toLowerCase() ) ? 'ie' : 'gecko' ; -
FCKeditor/trunk/_test/manual/fckeditorapi/test1_inner.html
r132 r498 35 35 function LoadScript( url ) 36 36 { 37 document.write( '<script type="text/javascript" src="' + url + '" onerror="alert(\'Error loading \' + this.src);"><\/script>' ) ;37 document.write( '<script type="text/javascript" src="' + url + '"><\/script>' ) ; 38 38 } 39 39 var sSuffix = FCKBrowserInfo.IsIE ? 'ie' : 'gecko' ; -
FCKeditor/trunk/_test/manual/fckkeystrokehandler/test1.html
r382 r498 42 42 function LoadScript( url ) 43 43 { 44 document.write( '<script type="text/javascript" src="' + url + '" onerror="alert(\'Error loading \' + this.src);"><\/script>' ) ;44 document.write( '<script type="text/javascript" src="' + url + '"><\/script>' ) ; 45 45 } 46 46 var sSuffix = /msie/.test( navigator.userAgent.toLowerCase() ) ? 'ie' : 'gecko' ; -
FCKeditor/trunk/_test/manual/fckmenublock/test1.html
r363 r498 55 55 function LoadScript( url ) 56 56 { 57 document.write( '<script type="text/javascript" src="' + url + '" onerror="alert(\'Error loading \' + this.src);"><\/script>' ) ;57 document.write( '<script type="text/javascript" src="' + url + '"><\/script>' ) ; 58 58 } 59 59 var sSuffix = /msie/.test( navigator.userAgent.toLowerCase() ) ? 'ie' : 'gecko' ; -
FCKeditor/trunk/_test/manual/fckpanel/test1.html
r132 r498 45 45 function LoadScript( url ) 46 46 { 47 document.write( '<script type="text/javascript" src="' + url + '" onerror="alert(\'Error loading \' + this.src);"><\/script>' ) ;47 document.write( '<script type="text/javascript" src="' + url + '"><\/script>' ) ; 48 48 } 49 49 var sSuffix = /msie/.test( navigator.userAgent.toLowerCase() ) ? 'ie' : 'gecko' ; -
FCKeditor/trunk/_test/manual/fckspecialcombo/test1.html
r132 r498 60 60 function LoadScript( url ) 61 61 { 62 document.write( '<script type="text/javascript" src="' + url + '" onerror="alert(\'Error loading \' + this.src);"><\/script>' ) ;62 document.write( '<script type="text/javascript" src="' + url + '"><\/script>' ) ; 63 63 } 64 64 var sSuffix = /msie/.test( navigator.userAgent.toLowerCase() ) ? 'ie' : 'gecko' ; -
FCKeditor/trunk/_test/manual/fcktoolbarbuttonui/test1.html
r132 r498 54 54 function LoadScript( url ) 55 55 { 56 document.write( '<script type="text/javascript" src="' + url + '" onerror="alert(\'Error loading \' + this.src);"><\/script>' ) ;56 document.write( '<script type="text/javascript" src="' + url + '"><\/script>' ) ; 57 57 } 58 58 var sSuffix = /msie/.test( navigator.userAgent.toLowerCase() ) ? 'ie' : 'gecko' ; -
FCKeditor/trunk/_test/manual/fcktoolbarfontsizecombo/test1.html
r363 r498 66 66 function LoadScript( url ) 67 67 { 68 document.write( '<script type="text/javascript" src="' + url + '" onerror="alert(\'Error loading \' + this.src);"><\/script>' ) ;68 document.write( '<script type="text/javascript" src="' + url + '"><\/script>' ) ; 69 69 } 70 70 var sSuffix = /msie/.test( navigator.userAgent.toLowerCase() ) ? 'ie' : 'gecko' ; -
FCKeditor/trunk/_test/manual/fcktoolbarpanelbutton/test1.html
r363 r498 58 58 function LoadScript( url ) 59 59 { 60 document.write( '<script type="text/javascript" src="' + url + '" onerror="alert(\'Error loading \' + this.src);"><\/script>' ) ;60 document.write( '<script type="text/javascript" src="' + url + '"><\/script>' ) ; 61 61 } 62 62 var sSuffix = /msie/.test( navigator.userAgent.toLowerCase() ) ? 'ie' : 'gecko' ; -
FCKeditor/trunk/_test/manual/fcktoolbar/test1.html
r132 r498 47 47 function LoadScript( url ) 48 48 { 49 document.write( '<script type="text/javascript" src="' + url + '" onerror="alert(\'Error loading \' + this.src);"><\/script>' ) ;49 document.write( '<script type="text/javascript" src="' + url + '"><\/script>' ) ; 50 50 } 51 51 var sSuffix = /msie/.test( navigator.userAgent.toLowerCase() ) ? 'ie' : 'gecko' ; -
FCKeditor/trunk/_test/manual/fcktools/addeventlistenerex.html
r132 r498 52 52 function LoadScript( url ) 53 53 { 54 document.write( '<script type="text/javascript" src="' + url + '" onerror="alert(\'Error loading \' + this.src);"><\/script>' ) ;54 document.write( '<script type="text/javascript" src="' + url + '"><\/script>' ) ; 55 55 } 56 56 var sSuffix = FCKBrowserInfo.IsIE ? 'ie' : 'gecko' ; -
FCKeditor/trunk/_test/manual/fcktools/createeventlistener.htm
r132 r498 52 52 function LoadScript( url ) 53 53 { 54 document.write( '<script type="text/javascript" src="' + url + '" onerror="alert(\'Error loading \' + this.src);"><\/script>' ) ;54 document.write( '<script type="text/javascript" src="' + url + '"><\/script>' ) ; 55 55 } 56 56 var sSuffix = FCKBrowserInfo.IsIE ? 'ie' : 'gecko' ; -
FCKeditor/trunk/_test/manual/fcktools/runfunction.html
r132 r498 43 43 function LoadScript( url ) 44 44 { 45 document.write( '<script type="text/javascript" src="' + url + '" onerror="alert(\'Error loading \' + this.src);"><\/script>' ) ;45 document.write( '<script type="text/javascript" src="' + url + '"><\/script>' ) ; 46 46 } 47 47 var sSuffix = FCKBrowserInfo.IsIE ? 'ie' : 'gecko' ; -
FCKeditor/trunk/_test/manual/fckxhtml/test1.html
r176 r498 47 47 function LoadScript( url ) 48 48 { 49 document.write( '<script type="text/javascript" src="' + url + '" onerror="alert(\'Error loading \' + this.src);"><\/script>' ) ;49 document.write( '<script type="text/javascript" src="' + url + '"><\/script>' ) ; 50 50 } 51 51 var sSuffix = FCKBrowserInfo.IsIE ? 'ie' : 'gecko' ;