Created
April 8, 2009 15:46
-
-
Save willbailey/91835 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
/** | |
* Move the root element offscreen | |
* @function ? | |
*/ | |
hideOffscreen : function(){ | |
this.el.setStyle({position:'absolute', top:'-5000px', left:'-5000px'}) | |
}, | |
/** | |
* Center the root element on the target | |
* @function ? | |
*/ | |
center : function(target){ | |
this.el.alignTo(target || document.body); | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment