2 <script type="text/javascript" charset="utf-8">
5 var id = Math.ceil(Math.random() * 1000000000);
7 load_callback = function(panel) {
8 $(document).bind('panel:contentChanged.' + id, function(event, p) {
9 $('.change-notification', $(this).parent()).fadeIn();
11 $(this).addClass('panel-htmleditor');
14 unload_callback = function(panel) {
15 $(me).removeClass('panel-htmleditor');
16 $(document).unbind('panel:contentChanged.' + id);