1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-02 09:09:38 +02:00
This commit is contained in:
gorhill 2015-04-08 06:21:31 -04:00
parent 125513164f
commit 637439c6db

View File

@ -198,9 +198,9 @@ HnSwitches.prototype.toggleBranchZ = function(switchName, targetHostname, newSta
HnSwitches.prototype.toggleZ = function(switchName, hostname, deep, newState) {
if ( deep === true ) {
return this.hnSwitches.toggleBranchZ(switchName, hostname, newState);
return this.toggleBranchZ(switchName, hostname, newState);
}
return this.hnSwitches.toggleOneZ(switchName, hostname, newState);
return this.toggleOneZ(switchName, hostname, newState);
};
/******************************************************************************/