BUGFIX: Removed spurious console.log() functions (merged from r77552)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/branches/2.3@77553 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sam Minnee 2009-05-21 05:09:40 +00:00
parent cf8a2ae0c9
commit 61abc8c40e
2 changed files with 1 additions and 2 deletions

View File

@ -189,7 +189,7 @@ SiteTreeFilterForm.prototype = {
initialize: function() {
var self = this;
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() {

View File

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