mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 09:05:53 +00: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() {
|
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() {
|
||||||
|
@ -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;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user