Add space between function name and brackets

to visually differentiate between function declarations and instantiations.
This commit is contained in:
JC Brand 2014-10-10 11:05:16 +02:00
parent 266f3da2f7
commit 8493b4f423

View File

@ -3085,14 +3085,10 @@
return this;
},
restore: function(ev) {
restore: _.debounce(function (ev) {
if (ev && ev.preventDefault) {
ev.preventDefault();
}
this._restore();
},
_restore: _.debounce(function () {
this.remove();
this.model.maximize();
}, 200)