2012-01-25 9 views
0

を追加することが、私はプラグインを使用しようとすると、私はいつも同じ問題を抱えています実際のエラーであることがわかりました。ここでは私のコードの一部です。アロハエディターのエラー私は私のプロジェクトにアロハ・エディタを使用しているプラ​​グイン

<head> 
<link rel="stylesheet" href="{{ MEDIA_URL }}aloha_editor/aloha/css/aloha.css" id="aloha-style-include" type="text/css"> 
<script type="text/javascript" src="/media/jquery.js"></script> 
<script type="text/javascript" src="/media/script.js"></script> 
<script src="/media/aloha_editor/aloha/lib/aloha.js" data-aloha-plugins="common/format,extra/draganddropfiles,common/image,common/link"></script> 
</head> 

<body> 
    <script type="text/javascript"> 

    (function(window,document) { 
     var 
      $ = window.jQuery, 
      GENTICS = window.GENTICS, 
      $body = $('body'); 
     Aloha.settings = { 
       logLevels: {'error': true, 'warn': true, 'info': true, 'debug': true}, 
       errorhandling : false, 
       ribbon: false, 
       "i18n": { 
        // let the system detect the users language 
        "acceptLanguage": '<?=$_SERVER['HTTP_ACCEPT_LANGUAGE']?>' 
        //"acceptLanguage": 'fr,de-de,de;q=0.8,it;q=0.6,en-us;q=0.7,en;q=0.2' 
       }, 
       "plugins": { 
        "format": { 
         // all elements with no specific configuration get this configuration 
         config : [ 'b', 'i','sub','sup'], 
          editables : { 
          // no formatting allowed for title 
          '#title' : [ ], 
          // content is a DIV and has class .article so it gets both buttons 
          '#content' : [ 'b', 'i', 'p', 'title', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'pre', 'removeFormat'] 
          } 
        }, 
        "dragndropfiles": { 
         config : { 'drop' : {'max_file_size': '200000', 
                 'upload': {//'uploader_class':GENTICS.Aloha.Uploader, //this is the default 
                    'config': { 
                     'url': '/media/images_dragged/', 
                     'extra_headers':{'Accept':'application/json'}, 
                     'additional_params': {"location":""}, 
                     'www_encoded': false }}}} 
        }, 
        "table": { 
         config: ['table'] 
        }, 
        "image": { 
         config : { 'img': { 'max_width': '50px', 
           'max_height': '50px' }}, 
         editables : { 
          '#title' : {}, 
         } 
        } 
       } 
      }; 
     $body.bind('alohaReady',function(){ 
      $('#content').aloha(); 
     }); 
    })(window, document); 
</script> 
... 
... 
</body> 

何か助けてください。

+0

また、 draganddropfilesの設定のスペルが間違っているように見えます。 – davidfurber

答えて

0

あなたのコードにはいくつかの問題があります。 .aloha()を使用するには、Aloha.jQueryを自分のjQueryバージョンではなく使用してください(他のものにjQueryを使用しても問題ありません)、Aloha Editorをロードする前に設定を初期化する必要があります。 ..

はあなたのコードの作業例についてはこちらをご覧ください:https://gist.github.com/1993723

すべてのベスト、 ルネ

ところで: あなたもここにアロハエディターフォーラムを使用することができます。http://getsatisfaction.com/aloha_editor

関連する問題