File tree Expand file tree Collapse file tree 1 file changed +6
-12
lines changed Expand file tree Collapse file tree 1 file changed +6
-12
lines changed Original file line number Diff line number Diff line change @@ -2088,27 +2088,21 @@ var pluginManager = function pluginManager() {
20882088 return value ;
20892089 }
20902090 else {
2091- if ( myOb === true ) {
2092- return true ;
2093- }
2094- else {
2095- return false ;
2096- }
2091+ return ! ! myOb ;
20972092 }
20982093 }
20992094 this . isAnyMasked = function ( ) {
2100- var result = false ;
21012095 if ( masking && masking . apps ) {
21022096 for ( var app in masking . apps ) {
21032097 if ( masking . apps [ app ] ) {
2104- result = result || hasAnyValueTrue ( masking . apps [ app ] ) ;
2105- if ( result ) {
2106- return true ;
2107- }
2098+ return hasAnyValueTrue ( masking . apps [ app ] . masking ) ;
21082099 }
21092100 }
2101+ return false ;
2102+ }
2103+ else {
2104+ return false ;
21102105 }
2111- return result ;
21122106 } ;
21132107
21142108 this . getMaskingSettings = function ( appID ) {
You can’t perform that action at this time.
0 commit comments