Usunięcie wszystkich wywołań console.log.
authorzuber <marek@stepniowski.com>
Mon, 24 Aug 2009 14:38:49 +0000 (16:38 +0200)
committerzuber <marek@stepniowski.com>
Mon, 24 Aug 2009 14:38:49 +0000 (16:38 +0200)
project/static/js/jquery.hpanel.js
project/static/js/panels.js
project/templates/explorer/panels/gallery.html
project/templates/explorer/panels/xmleditor.html

index 0877400..eb6d8bd 100644 (file)
@@ -5,7 +5,6 @@
         settings: {},
                current_data: {},
         resize_start: function(event, mydata) {
-                       console.log('Overlay: ' + mydata.overlay);
                        $(document).bind('mousemove', mydata, $.hpanel.resize_changed).
                                bind('mouseup', mydata, $.hpanel.resize_stop); 
 
     
     $.fn.makeHorizPanel = function(options) 
        {
-               console.log('Making an hpanel out of "#' +  $(this).attr('id') + '"'); 
                var root = $(this)
                var all_panels = $('.panel-wrap', root)
-               console.log('Panels: ' + all_panels);
 
                /* create an overlay */
                var overlay_root = $("<div class='panel-overlay'></div>");
index 28970c1..1317d9e 100644 (file)
@@ -1,14 +1,11 @@
 function loadPanel(target, url) {
-    console.log('ajax', url, 'into', target);
     $('.change-notification', $(target).parent()).fadeOut();
     $(document).trigger('panel:unload', target);
     $.ajax({
         url: url,
         dataType: 'html',
         success: function(data, textStatus) {
-            console.log(target, 'ajax success');
             $(target).html(data);
-            console.log(target, 'triggering panel:load');
             $(document).trigger('panel:load', target);
         },
         error: function(request, textStatus, errorThrown) {
@@ -24,21 +21,17 @@ function panel(load, unload) {
     
     unloadHandler = function(event, panel) {
         if (self && self == panel) {
-            console.log('Panel', panel, 'unloading');
             $(document).unbind('panel:unload.' + eventId);
             $(panel).html('');
             unload(event, panel);
-            console.log('Panel', panel, 'unloaded');
             return false;
         }
     };
     
     $(document).one('panel:load', function(event, panel) {
         self = panel;
-        console.log('Panel', panel, 'loading');
         $(document).bind('panel:unload.' + eventId, unloadHandler);
         load(event, panel);
-        console.log('Panel', panel, 'loaded');
     });
 }
 
index d35366e..60935bc 100644 (file)
@@ -27,7 +27,6 @@
             $(window).bind('resize', {'panel': panel}, resizeEditor);
             resizeEditor(null, panel);  
         }, function(event, panel) {
-            console.log('unloaded gallery panel', panel);
         });
     })()
 </script>
index bb225e4..0c8724f 100644 (file)
@@ -35,7 +35,6 @@
                     var tag = $(this).attr('p:tag');
                     var handler = function() {
                         var text = editor.selection();
-                        console.log(editor, editor.frame);
                         editor.replaceSelection('<' + tag + '>' + text + '</' + tag + '>');
                         if (text.length == 0) {
                             var pos = editor.cursorPosition();