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
var application = { | |
page_loaded : false, | |
page_init : function() { | |
var i; | |
application.page_loaded = true; | |
// Load scripts that have not already been loaded. | |
var script; | |
for (i=0; script = application.scripts_to_load[i]; i++) { |
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
function Promise () { | |
this._thens = []; | |
} | |
Promise.prototype = { | |
then: function (resolve, reject) { | |
// capture calls to then() | |
this._thens.push({ resolve: resolve, reject: reject }); | |
}, |
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
NEEDSDOCS no ticket associated | |
https://github.com/jquery/jquery/commit/4e97543 | |
FEATURE (SMALL) SHOULD THIS BE REMOVED BEFORE 1.5.1?? | |
.invert() method on promises | |
returns an inverted promise that is resolved/rejected when the underlying deferred is rejected/resolved) | |
https://github.com/jquery/jquery/commit/e0b1bb8 | |
http://api.jquery.com/extending-ajax/ <-- the code example at the very bottom should be updated to match the new regex | |
#8122 |
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
$ git clone github:lenary/guides.git | |
Cloning into guides... | |
remote: Counting objects: 255, done. | |
remote: Compressing objects: 100% (216/216), done. | |
remote: Total 255 (delta 111), reused 163 (delta 35) | |
Receiving objects: 100% (255/255), 1.49 MiB | 564 KiB/s, done. | |
Resolving deltas: 100% (111/111), done. | |
$ cd guides | |
$ git remote -v |
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
/*! | |
* jQuery whenthen - v0.2 - 3/12/2011 | |
* http://benalman.com/ | |
* | |
* Copyright (c) 2011 "Cowboy" Ben Alman | |
* Dual licensed under the MIT and GPL licenses. | |
* http://benalman.com/about/license/ | |
*/ | |
(function($){ |
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
/*! | |
* jQuery whenthen - v0.2 - 3/12/2011 | |
* http://benalman.com/ | |
* | |
* Copyright (c) 2011 "Cowboy" Ben Alman | |
* Dual licensed under the MIT and GPL licenses. | |
* http://benalman.com/about/license/ | |
*/ | |
(function($){ |
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
<?xml version="1.0" encoding="utf-8"?> | |
<project name="sample-require-js" default="" basedir="."> | |
<!-- properties --> | |
<property name="requirejs.dir" value="_build/requirejs" /> | |
<!-- custom tasks --> | |
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
function getPrefix( prop ){ | |
var vendorPrefixes = ['Moz','Webkit','Khtml','O','ms'], | |
style = document.createElement('div').style, | |
upper = prop[0].toUpperCase() + prop.slice(1), | |
pref, len = vendorPrefixes.length; | |
while( len-- ){ | |
if((vendorPrefixes[len] + upper) in style){ | |
pref = (vendorPrefixes[len]); | |
} | |
} |
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
/* GPL */ | |
/*Whitelist version with quick test*/ | |
function k(q){ | |
var s, | |
d = document.createElement("div"), | |
n = q, | |
p = [ "webkit", "moz", "ms", "O", "" ], | |
o = n, | |
r, j=0, len, l; |
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
updateInputField = (el, value) -> | |
el.value = value | |
value += 10 | |
el.setAttribute "style", "width:" + Math.round(value * 25, 10) + "px" | |
moveThing = (el, acc) -> | |
acc.x = Math.round(acc.x * 20) | |
acc.y = Math.round(acc.y * 20) | |
acc.z = Math.round(acc.z * 25) | |
attr = "-webkit-transform:translate3d(" + acc.x + "px," + acc.y + "px," + acc.z + "px);" | |
attr += "-webkit-transition-duration:0.1s" |