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
/* | |
Demo showing how to use the usefulOrientation function. | |
*/ | |
function onDeviceOrientationChange(e){ | |
console.log("deviceOrientation", e.alpha, e.beta, e.gamma); | |
var orientation = usefulOrientation(e.alpha, e.beta, e.gamma); | |
console.log("usefulOrientatino", orientation.alpha, orientation.beta, orientation.gamma); | |
} | |
window.addEventListener("deviceorientation", onDeviceOrientationChange, false); |
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
define("expose", [], function(){ | |
function toType(obj){ | |
return ({}).toString.call(obj).match(/\s([a-zA-Z]+)/)[1].toLowerCase() | |
} | |
return function(){ | |
var list = arguments; | |
var func = /^function\s+([^(]+)/i; | |
var i=0; | |
var obj; |
NewerOlder