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