Skip to content

Commit

Permalink
Wrong reference fix. Closes #9.
Browse files Browse the repository at this point in the history
  • Loading branch information
rockon999 committed Jan 15, 2016
1 parent 5bb479b commit 2883feb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dynamic-panel-transparency@rockon999.github.io/extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,9 @@ function enable() {

function disable() {
/* Disconnect & Null Signals */
if (!Util.is_undef(Main.screenShield))
if (!is_undef(Main.screenShield))
Main.screenShield.disconnect(this._lockScreenSig);
if (!Util.is_undef(this._windowUnminimizeSig))
if (!is_undef(this._windowUnminimizeSig))
global.window_manager.disconnect(this._windowUnminimizeSig);
Main.overview.disconnect(this._overviewShowingSig);
Main.overview.disconnect(this._overviewHiddenSig);
Expand Down

0 comments on commit 2883feb

Please sign in to comment.