File tree 1 file changed +12
-6
lines changed
1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -2087,21 +2087,27 @@ var pluginManager = function pluginManager() {
2087
2087
return value ;
2088
2088
}
2089
2089
else {
2090
- return ! ! myOb ;
2090
+ if ( myOb === true ) {
2091
+ return true ;
2092
+ }
2093
+ else {
2094
+ return false ;
2095
+ }
2091
2096
}
2092
2097
}
2093
2098
this . isAnyMasked = function ( ) {
2099
+ var result = false ;
2094
2100
if ( masking && masking . apps ) {
2095
2101
for ( var app in masking . apps ) {
2096
2102
if ( masking . apps [ app ] ) {
2097
- return hasAnyValueTrue ( masking . apps [ app ] . masking ) ;
2103
+ result = result || hasAnyValueTrue ( masking . apps [ app ] ) ;
2104
+ if ( result ) {
2105
+ return true ;
2106
+ }
2098
2107
}
2099
2108
}
2100
- return false ;
2101
- }
2102
- else {
2103
- return false ;
2104
2109
}
2110
+ return result ;
2105
2111
} ;
2106
2112
2107
2113
this . getMaskingSettings = function ( appID ) {
You can’t perform that action at this time.
0 commit comments