Skip to content

Instantly share code, notes, and snippets.

@lawrencejones
Created November 8, 2013 01:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lawrencejones/7364838 to your computer and use it in GitHub Desktop.
Save lawrencejones/7364838 to your computer and use it in GitHub Desktop.
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