[Build] Use not-threequals operator

...to satisfy JSHint
This commit is contained in:
Victor Woeltjen 2016-03-04 10:58:23 -08:00
parent f6898d16c9
commit 56a91dfbaf

View File

@ -131,7 +131,7 @@ define(
* object representation accordingly
*/
this.listenHandle = this.domainObject.getCapability('status').listen(function(statuses){
if (statuses.indexOf('editing')!=-1){
if (statuses.indexOf('editing') !== -1){
setEditing();
} else {
delete scope.viewObjectTemplate;