ee5146cd918e98ad9d4347968ab7c97850930240
[redakcja.git] / project / templates / explorer / panels / dceditor.html
1 <div class="panel-dceditor">
2     <form action="{{ request.get_full_path }}" method="post" accept-charset="utf-8">
3         {{ form }}
4         <p><input type="submit" value="Continue &rarr;"/></p>
5     </form>
6 </div>
7 <script type="text/javascript" charset="utf-8">
8     (function() {
9         var id = Math.ceil(Math.random() * 1000000000);
10         
11         panel(function(event, me) {
12             // $(document).bind('panel:contentChanged.' + id, function(event, p) {
13             //     $('.change-notification', $(me).parent()).fadeIn();
14             // });
15             $(me).addClass('panel-htmleditor');
16         }, function(event, me) {
17             $(me).removeClass('panel-htmleditor');
18             // $(document).unbind('panel:contentChanged.' + id);
19         });
20     })()
21 </script>