2009-11-15 2 views
0

TinyMCE 초기화는 다음과 같습니다로드되지 않습니다 : 이것은 Internet Explorer 7의 반면 파이어 폭스에서 잘로드TinyMCE에는

var tinymce_advanced_options = { 
     mode : "textareas", 
     theme : "advanced", 
     editor_deselector : "mceNoEditor", 
     theme_advanced_resizing_min_width : 500, 
     theme_advanced_resizing_max_width : 800, 
     plugins : "autoresize,paste,preview,safari,table,contextmenu,paste,imagepopup,emotions", 

     width: "800", 
     button_title_map: false, 
     apply_source_formatting: true, 
     theme_advanced_toolbar_align: "left", 
     theme_advanced_buttons1: "formatselect,outdent,indent,seperator,undo,redo,separator,emotions", 
     theme_advanced_buttons2: "justifyleft,justifycenter,justifyright,separator,bold,italic,separator,bullist,numlist,link,separator,imagepopup,table,separator", 
     theme_advanced_buttons3: "preview", 
     plugin_preview_width : "500", 
     plugin_preview_height : "600", 

     theme_advanced_toolbar_location: "bottom", 
     theme_advanced_resizing : true, 
     theme_advanced_blockformats : "p,h2,h3,blockquote" 
    }; 

, 스피너는 부하를 회전 결코 유지합니다.

실마리가 있습니다.

+0

아마 명백한 제안이지만 IE의 캐시를 플러시하여 borked 구성을로드하려고 시도하지 않도록 할 수 있습니다. –

+0

개발자 콘솔 [F12]에서 힌트를 찾으십시오. – naXa

답변

2

처음부터 끝까지 모든 줄을 주석 처리하여 IE7에서 작동하는지 확인하십시오. 그런 다음 한 줄씩 주석 처리하여 구성의 일부인지 확인하십시오.

+0

도움. 감사. 이 모든 플러그인을 제거하고 작동했습니다. '감정'플러그인을 추가하면 IE7에서이 문제가 발생하는 이유는 무엇입니까? – user16455