Прослушивание Aloha Editor «aloha -smart -content -изменено» Событие?

Согласно документам Aloha Editor, вы можете прослушать событие «aloha -smart -content -изменено» для помощи, например, в сохранении данных в любом используемом вами механизме сохранения. Вот пример того, что я пытаюсь сделать:

<html>
  <head>
    <title>Aloha Event Testing</title>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
    <script src="http://cdn.aloha-editor.org/current/lib/aloha.js" data-aloha-plugins="common/format, common/list, common/link, common/highlighteditables"></script>
    <link href="http://cdn.aloha-editor.org/current/css/aloha.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript">
      Aloha.ready( function() {
        var $ = Aloha.jQuery;
        $('.editable').aloha();
      });
      $(document).ready(function() {
        $('.editable').bind('aloha-smart-content-changed', function() {
          console.log('Aloha smart event handled.');
        });
      });
    </script>
  </head>
  <body>
    <div class="editable"></div>
  </body>
</html>

Но обработчик никогда не срабатывает. Кто-нибудь, кто работал с Aloha, знает, как правильно слушать событие?

6
задан mjswensen 2 July 2012 в 23:10
поделиться