BUGFIX: Removed spurious console.log() functions.

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@77552 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sam Minnee 2009-05-21 05:08:44 +00:00
parent 9207cbc2da
commit 31325beec6
2 changed files with 1 additions and 2 deletions

View File

@ -192,7 +192,7 @@ SiteTreeFilterForm.prototype = {
initialize: function() { initialize: function() {
var self = this; var self = this;
Form.getElements(this).each(function(el){ Form.getElements(this).each(function(el){
if (el.type == 'submit') el.onclick = function(){self.clicked = $F(this); console.log(self.clicked)}; if (el.type == 'submit') el.onclick = function(){self.clicked = $F(this);};
}); });
}, },
onsubmit: function() { onsubmit: function() {

View File

@ -43,7 +43,6 @@ TreeAPI.prototype = {
var url = this.customURL ? this.customURL : SiteTreeHandlers.loadTree_url; var url = this.customURL ? this.customURL : SiteTreeHandlers.loadTree_url;
url = url + (url.match(/\?/) ? '&' : '?') + args.toQueryString(); url = url + (url.match(/\?/) ? '&' : '?') + args.toQueryString();
console.log('Loading tree from ' + url);
return url; return url;
}, },