fnp
/
redakcja.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
51a4b0a
)
Usunięcie wszystkich wywołań console.log.
author
zuber
<marek@stepniowski.com>
Mon, 24 Aug 2009 14:38:49 +0000
(16:38 +0200)
committer
zuber
<marek@stepniowski.com>
Mon, 24 Aug 2009 14:38:49 +0000
(16:38 +0200)
project/static/js/jquery.hpanel.js
patch
|
blob
|
history
project/static/js/panels.js
patch
|
blob
|
history
project/templates/explorer/panels/gallery.html
patch
|
blob
|
history
project/templates/explorer/panels/xmleditor.html
patch
|
blob
|
history
diff --git
a/project/static/js/jquery.hpanel.js
b/project/static/js/jquery.hpanel.js
index
0877400
..
eb6d8bd
100644
(file)
--- a/
project/static/js/jquery.hpanel.js
+++ b/
project/static/js/jquery.hpanel.js
@@
-5,7
+5,6
@@
settings: {},
current_data: {},
resize_start: function(event, mydata) {
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);
$(document).bind('mousemove', mydata, $.hpanel.resize_changed).
bind('mouseup', mydata, $.hpanel.resize_stop);
@@
-41,10
+40,8
@@
$.fn.makeHorizPanel = function(options)
{
$.fn.makeHorizPanel = function(options)
{
- console.log('Making an hpanel out of "#' + $(this).attr('id') + '"');
var root = $(this)
var all_panels = $('.panel-wrap', root)
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>");
/* create an overlay */
var overlay_root = $("<div class='panel-overlay'></div>");
diff --git
a/project/static/js/panels.js
b/project/static/js/panels.js
index
28970c1
..
1317d9e
100644
(file)
--- a/
project/static/js/panels.js
+++ b/
project/static/js/panels.js
@@
-1,14
+1,11
@@
function loadPanel(target, url) {
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) {
$('.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);
$(target).html(data);
- console.log(target, 'triggering panel:load');
$(document).trigger('panel:load', target);
},
error: function(request, textStatus, errorThrown) {
$(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) {
unloadHandler = function(event, panel) {
if (self && self == panel) {
- console.log('Panel', panel, 'unloading');
$(document).unbind('panel:unload.' + eventId);
$(panel).html('');
unload(event, panel);
$(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;
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);
$(document).bind('panel:unload.' + eventId, unloadHandler);
load(event, panel);
- console.log('Panel', panel, 'loaded');
});
}
});
}
diff --git
a/project/templates/explorer/panels/gallery.html
b/project/templates/explorer/panels/gallery.html
index
d35366e
..
60935bc
100644
(file)
--- a/
project/templates/explorer/panels/gallery.html
+++ b/
project/templates/explorer/panels/gallery.html
@@
-27,7
+27,6
@@
$(window).bind('resize', {'panel': panel}, resizeEditor);
resizeEditor(null, panel);
}, function(event, panel) {
$(window).bind('resize', {'panel': panel}, resizeEditor);
resizeEditor(null, panel);
}, function(event, panel) {
- console.log('unloaded gallery panel', panel);
});
})()
</script>
});
})()
</script>
diff --git
a/project/templates/explorer/panels/xmleditor.html
b/project/templates/explorer/panels/xmleditor.html
index
bb225e4
..
0c8724f
100644
(file)
--- a/
project/templates/explorer/panels/xmleditor.html
+++ b/
project/templates/explorer/panels/xmleditor.html
@@
-35,7
+35,6
@@
var tag = $(this).attr('p:tag');
var handler = function() {
var text = editor.selection();
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();
editor.replaceSelection('<' + tag + '>' + text + '</' + tag + '>');
if (text.length == 0) {
var pos = editor.cursorPosition();