Skip to content

Instantly share code, notes, and snippets.

@mariusGundersen
mariusGundersen / demo.js
Created May 2, 2012 21:29
The usefulOrientation function takes the arguments from an DeviceOrientationEvent and returns the orientation of the interface relative to the world
/*
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);
@mariusGundersen
mariusGundersen / expose.js
Created March 8, 2012 08:47
Expose makes it simple to expose functions and properties of AMD modules
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;