Show
Ignore:
Timestamp:
2007-07-23 01:53:07 (18 months ago)
Author:
martinkou
Message:

Fixed #289 : Removed error alerts from all LoadScript() and LoadCss() functions.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor/trunk/editor/fckeditor.html

    r400 r498  
    3939function LoadScript( url ) 
    4040{ 
    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>' ) ; 
    4242} 
    4343 
    4444function LoadCss( url ) 
    4545{ 
    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" />' ) ; 
    4747} 
    4848