FIX: Added parentheses for the if block

This commit is contained in:
Mellisa Hankins 2015-02-13 15:09:09 +11:00
parent 29769cc5cc
commit 2b9512db18

View File

@ -91,8 +91,9 @@
});
},
onaddnewinline: function(e) {
if(e.target != this[0])
return;
if(e.target != this[0]) {
return;
}
var tmpl = window.tmpl;
var row = this.find(".ss-gridfield-add-inline-template");