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
/*! normalize-all-you-really-need-tho.css v1.0.0 | MIT License */ | |
html { | |
font-family: sans-serif; /* 1 */ | |
-webkit-text-size-adjust: 100%; /* 2 */ | |
-ms-text-size-adjust: 100%; /* 2 */ | |
} | |
body { | |
margin: 0; |
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
https://speakerdeck.com/tomdale/emberconf-2014-keynote | |
https://speakerdeck.com/machty/emberconf-2014-mr-router-embraces-the-controller-alex-matchneer | |
https://machty.s3.amazonaws.com/emberconf/fun.html | |
https://speakerdeck.com/coderberry/the-unofficial-official-ember-testing-guide | |
https://github.com/rpflorence/ember-qunit | |
https://speakerdeck.com/cmeiklejohn/divergent |
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
//initialization of DI(intravenous) and command classes | |
$(document).ready(function() { | |
//create DI | |
var container = intravenous.create(); | |
//we want this object to exist as a singleton throughout the app lifecycle | |
container.register("currentQuestionItem", {dataObj:''}, "singleton"); | |
container.register("currentQuesVal", {score:-1000}, "singleton"); | |
container.register("currentSlideIndex", {slideIndex:0}, "singleton"); |