mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 06:05:56 +00:00
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:
parent
cf8a2ae0c9
commit
61abc8c40e
@ -189,7 +189,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