Merge branch 'master' of git@stigma:platforma
[redakcja.git] / project / templates / explorer / panels / htmleditor.html
1 <div class="panel">
2     <div class="htmleditor">
3         {{ html|safe }}
4     </div>
5 </div>
6 <script type="text/javascript" charset="utf-8">
7     (function() {
8         var id = Math.ceil(Math.random() * 1000000000);
9         
10         panel(function(event, panel) {
11             $(document).bind('panel:contentChanged.' + id, function(event, p) {
12                 $('.change-notification', $(panel).parent()).fadeIn();
13             })
14         }, function(event, panel) {
15             $(document).unbind('panel:contentChanged.' + id);
16         });
17     })()
18 </script>