Created
November 8, 2013 01:31
-
-
Save lawrencejones/7364838 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WorkspaceSwitcherPopup = imports.ui.workspaceSwitcherPopup; | |
function init() { | |
} | |
function enable() { | |
if (WorkspaceSwitcherPopup.prototype == null) | |
WorkspaceSwitcherPopup.prototype = {}; | |
WorkspaceSwitcherPopup.prototype['_show'] = function ( ) { }; | |
} | |
function disable() { | |
WorkspaceSwitcherPopup.prototype['_show'] = function ( ) { | |
Tweener.addTween(this._container, { opacity: 255, | |
time: ANIMATION_TIME, | |
transition: 'easeOutQuad' | |
}); | |
this._position(); | |
this.actor.show(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment