Created
December 29, 2009 20:06
-
-
Save remy/265552 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
// because I just needed the function to run once, then assign it - | |
// I knew that I'd never need to run it manually again, so here I | |
// extended the Function prototype :) | |
Function.prototype.runReturn = function () { | |
this.call(); | |
return this; | |
}; | |
// for example: | |
$(document).on('orientationchange', function () { | |
$('body').removeClass('portrait landscape').addClass(window.innerWidth < window.innerHeight ? 'portrait' : 'landscape'); | |
}.runReturn()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment