mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
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:
parent
9207cbc2da
commit
31325beec6
@ -192,7 +192,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() {
|
||||
|
@ -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;
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user