mirror of
https://github.com/nasa/openmct.git
synced 2025-06-12 12:18:16 +00:00
[Build] Use not-threequals operator
...to satisfy JSHint
This commit is contained in:
@ -131,7 +131,7 @@ define(
|
|||||||
* object representation accordingly
|
* object representation accordingly
|
||||||
*/
|
*/
|
||||||
this.listenHandle = this.domainObject.getCapability('status').listen(function(statuses){
|
this.listenHandle = this.domainObject.getCapability('status').listen(function(statuses){
|
||||||
if (statuses.indexOf('editing')!=-1){
|
if (statuses.indexOf('editing') !== -1){
|
||||||
setEditing();
|
setEditing();
|
||||||
} else {
|
} else {
|
||||||
delete scope.viewObjectTemplate;
|
delete scope.viewObjectTemplate;
|
||||||
|
Reference in New Issue
Block a user