Food from FireHouse Subs will be provided. You'll eat, get settled, and find your team. If you still need help with finding a team, we'll help you.
This file contains hidden or 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
| Some things to avoid and defer to jQuery when writing Javascript: | |
| document.getXYZ -> $('...') | |
| document.getElementById('abc') is okay, but some others are not. Might as well use $('#abc'). | |
| querySelector -> $('...') | |
| querySelector is not supported in IE7 - IE8, use jQuery. |
This file contains hidden or 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 ITEM_VIEW(){ with(BindUp) { return ( | |
| SECTION({id: 'item-view'}, | |
| H2($('name'), | |
| IMG({ | |
| src: $('imageURL'), | |
| alt: 'Side-view shot' | |
| }), | |
| LABEL('Price'), SPAN($('price')), | |
| SECTION( |
This file contains hidden or 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 code = '(' + function(){ | |
| window.postMessage({ | |
| globals: Object.keys(window) | |
| }) | |
| } + '())' | |
| var script = document.createElement('script') | |
| script.text = code | |
| document.head.appendChild(script) |
This file contains hidden or 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 isCommonJS = typeof window == "undefined" && typeof exports == "object"; | |
| /** | |
| * Top level namespace for Jasmine, a lightweight JavaScript BDD/spec/testing framework. | |
| * | |
| * @namespace | |
| */ | |
| var jasmine = {}; | |
| if (isCommonJS) exports.jasmine = jasmine; | |
| /** |
This file contains hidden or 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 oldxhr = dojo.xhr; | |
| dojo.xhr = function(){ | |
| var args = Array.prototype.slice.call(arguments) | |
| return oldxhr.apply(dojo, arguments).addCallback(function(error){ | |
| console.log('Ajax finished: ', args) | |
| }); | |
| }; |
This file contains hidden or 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 traverseDom(elm, visit){ | |
| visit(elm) | |
| var curr = elm.firstChild | |
| while (curr){ | |
| if (curr.nodeType === 1){ | |
| traverseDom(curr, visit) | |
| } | |
| curr = curr.nextSibling | |
| } | |
| } |
This file contains hidden or 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
| //@ sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2VuZXJhdGVkLmpzIiwic291cmNlcyI6WyIvVXNlcnMvYWlycG9ydHloL0hvbWUvQ29kZS9yb3Zlci9jb250ZW50c2NyaXB0L2luZGV4LmpzIiwiL1VzZXJzL2FpcnBvcnR5aC9Ib21lL0NvZGUvcm92ZXIvY29udGVudHNjcmlwdC9vZmZzZXRzLmpzIiwiL1VzZXJzL2FpcnBvcnR5aC9Ib21lL0NvZGUvcm92ZXIvY29udGVudHNjcmlwdC91bmlxdWVfc2VsZWN0b3IuanMiLCIvVXNlcnMvYWlycG9ydHloL0hvbWUvQ29kZS9yb3Zlci9jb250ZW50c2NyaXB0L2Nocm9tZWV4dC5qcyIsIi91c3IvbG9jYWwvbGliL25vZGVfbW9kdWxlcy9icm93c2VyaWZ5L25vZGVfbW9kdWxlcy9pbnNlcnQtbW9kdWxlLWdsb2JhbHMvbm9kZV9tb2R1bGVzL3Byb2Nlc3MvYnJvd3Nlci5qcyIsIi91c3IvbG9jYWwvbGliL25vZGVfbW9kdWxlcy9icm93c2VyaWZ5L25vZGVfbW9kdWxlcy9icm93c2VyLXJlc29sdmUvYnVpbHRpbi9ldmVudHMuanMiLCIvVXNlcnMvYWlycG9ydHloL0hvbWUvQ29kZS9yb3Zlci9jb250ZW50c2NyaXB0L2ZyaWVuZGx5X3RhZy5qcyIsIi9Vc2Vycy9haXJwb3J0eWgvSG9tZS9Db2RlL3JvdmVyL2NvbnRlbnRzY3JpcHQvaW50ZXJhY3RpdmVfbW9kZS5qcyIsIi9Vc2Vycy9haXJwb3J0eWgvSG9tZS9Db2RlL3JvdmVyL2NvbnRlbnRzY3JpcHQvZGltZW5zaW9ucy5qcyIsIi9Vc2Vycy9haXJwb3J0eWgvSG9tZS9Db2RlL3JvdmVyL2NvbnRlbnRzY3 |
This file contains hidden or 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
| $ bower install async | |
| bower cloning git://github.com/caolan/async | |
| bower cached git://github.com/caolan/async | |
| bower fetching async | |
| bower checking out async#v0.2.5 | |
| bower copying /Users/airportyh/.bower/cache/async/aff84254264447a88702deebb5d1aa6e | |
| bower installing async#0.2.5 | |
| $ cat app/bower_components/async/bower.json | |
| { | |
| "name": "async", |
This file contains hidden or 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
| <!-- build:js scripts/main.js --> | |
| <!-- bower --> | |
| <script src="bower_components/bug/index.js"></script> | |
| <script src="bower_components/jquery/jquery.js"></script> | |
| <!-- endbower --> | |
| <script src="scripts/main.js"></script> | |
| <!-- endbuild --> |