Skip to content

Instantly share code, notes, and snippets.

@willbailey
Created April 8, 2009 15:46
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 willbailey/91835 to your computer and use it in GitHub Desktop.
Save willbailey/91835 to your computer and use it in GitHub Desktop.
/**
* 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