2 <script type="text/javascript" charset="utf-8">
4 var id = Math.ceil(Math.random() * 1000000000);
6 panel(function(event, me) {
7 $(document).bind('panel:contentChanged.' + id, function(event, p) {
8 $('.change-notification', $(me).parent()).fadeIn();
10 $(me).addClass('panel-htmleditor');
11 }, function(event, me) {
12 $(me).removeClass('panel-htmleditor');
13 $(document).unbind('panel:contentChanged.' + id);