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
#!/usr/bin/env python | |
print "sup, dude?" |
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
./js/capture/_ui_closure.erb:139: var baseUrl = baseUrl || 'http://<%= settings.host_name %>:<%= settings.port %>'; | |
./js/capture/_ui_closure.erb:304: if ('<%= settings.environment %>' == 'development') { | |
./js/capture/_ui_closure.erb:327: return 'https://' + '<%= settings.capture_cloudfront_domain_name %>'; | |
./js/capture/_ui_closure.erb:355:<%= erb :"js/capture/_errors" %> | |
./js/capture/_ui_closure.erb:356:<%= erb :"js/capture/_validators" %> | |
./js/capture/_ui_closure.erb:358:<%= erb :"js/capture/_handlers" %> | |
./js/capture/_ui_closure.erb:359:<%= erb :"js/capture/_session" %> | |
./js/capture/_ui_closure.erb:360:<%= erb :"js/capture/_conditionals" %> | |
./js/capture/_ui_closure.erb:361:<%= erb :"js/capture/_transaction" %> | |
./js/capture/_ui_closure.erb:362:<%= erb :"js/capture/_translations" %> |
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
vows.describe = function(title){ | |
return { | |
addBatch:function(tests){ | |
for(i in tests){ | |
test(i, tests[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
window.janrain = window.janrain || {}; | |
window.janrain.settings = window.janrain.settings || {}; | |
janrain.settings.tokenUrl = location.origin + '/token'; | |
function r(f){/p/.test(document.readyState)?f():setTimeout('r('+f+')',9)} | |
r(function(){ janrain.ready = true; }); |
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
janrain.foo.public2 = function(){ | |
janpriv.bar.private1(); | |
} |
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
window.exports={}; | |
window.imported={}; | |
// synchronous require for CommonJS | |
function require(name){ | |
if (!window.imported[name]){ | |
var xhrObj = createXMLHTTPObject(); | |
// open and send a synchronous request | |
xhrObj.open('GET', name + ".js", false); | |
xhrObj.send(''); |
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
<html> | |
<head> | |
</head> | |
<body> | |
</body> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script> | |
<script> | |
window.imported={}; |
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
<html> | |
<head> | |
</head> | |
<body> | |
</body> | |
<script> | |
window.imported={}; | |
// synchronous require for CommonJS |
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
TEST=event node test/lib/test.js | |
Event | |
instances | |
✓ should be an instance of Event | |
✓ should have eventHandlers array | |
✓ should have firedEvents array | |
✓ should have addHandler method | |
✓ should have removeHandler method |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Iso Demo</title> | |
<style> | |
html, body { | |
padding:0; | |
margin:0; | |
} | |
#framecounter { |