# HG changeset patch --
Bitbucket.org
# Project galaxy-dist
# URL
http://bitbucket.org/galaxy/galaxy-dist/overview
# User Dannon Baker <dannon.baker(a)emory.edu>
# Date 1275663873 14400
# Node ID d285c65c66d3d49f3ddd998fe2d28b60996581f1
# Parent f22b57fa537f9c2f3c458bf513bce2bd155239d1
BUGFIX: Removed console.logs from page and workflow editors.
--- a/templates/workflow/editor.mako
+++ b/templates/workflow/editor.mako
@@ -123,7 +123,7 @@
});
$(document).ajaxError( function ( e, x ) {
- console.log( e, x );
+ // console.log( e, x );
var message = x.responseText || x.statusText || "Could not connect to
server";
show_modal( "Server error", message, { "Ignore error" :
hide_modal } );
return false;
--- a/templates/page/editor.mako
+++ b/templates/page/editor.mako
@@ -573,7 +573,7 @@
$(function(){
## Generic error handling
$(document).ajaxError( function ( e, x ) {
- console.log( e, x );
+ // console.log( e, x );
var message = x.responseText || x.statusText || "Could not connect
to server";
show_modal( "Server error", message, { "Ignore error"
: hide_modal } );
return false;