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
// remove splash screen | |
navigator.splashscreen.hide(); |
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
.transition-all (@time: 0.5s, @property: all, @function: ease-in-out) { | |
-webkit-transition:@property @time @function; | |
-moz-transition:@property @time @function; | |
-o-transition:@property @time @function; | |
transition:@property @time @function; | |
} |
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
.animate (@name, @duration: 1s, @count: infinite, @direction: normal, @function: ease-in-out) { | |
-moz-animation-name: @name; | |
-moz-animation-duration: @duration; | |
-moz-animation-iteration-count: @count; | |
-moz-animation-direction: @direction; | |
-moz-animation-timing-function: @function; | |
-webkit-animation-name: @name; | |
-webkit-animation-duration: @duration; | |
-webkit-animation-iteration-count: @count; | |
-webkit-animation-direction: @direction; |
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
.twoStopGrad(@one, @two) { | |
background: @one; /* Old browsers */ | |
background: -moz-linear-gradient(top, @one 0%, @two 100%); /* FF3.6+ */ | |
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,@one), color-stop(100%,@two)); /* Chrome,Safari4+ */ | |
background: -webkit-linear-gradient(top, @one 0%,@two 100%); /* Chrome10+,Safari5.1+ */ | |
background: -o-linear-gradient(top, @one 0%,@two 100%); /* Opera11.10+ */ | |
background: -ms-linear-gradient(top, @one 0%,@two 100%); /* IE10+ */ | |
filter: ~"progid:DXImageTransform.Microsoft.gradient( startColorstr='@one', endColorstr='@two',GradientType=0 )"; /* IE6-9 */ | |
background: linear-gradient(top, @one 0%,@two 100%); /* W3C */ | |
} |
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
* { | |
/* hides the cursor */ | |
cursor:none !important; | |
/* prevent content selection */ | |
-webkit-user-select: none; | |
-khtml-user-select: none; | |
-moz-user-select: none; | |
-ms-user-select: none; | |
-o-user-select: none; |
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 InactivityTimer() { | |
this.timer = 0; | |
this.threshold = 5000; | |
window.addEventListener('click', this.resetTimer.bind(this), true); // binding to capture phase | |
this.startTimer.call(this); | |
} | |
InactivityTimer.prototype = { | |
startTimer: function() { |
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 TodoListView = Backbone.View.extend({ | |
tagName: "ul", | |
id: "todolist", | |
initialize: function() { | |
_.bindAll(this, "appendTodo"); | |
}, | |
render: function() { | |
this.$el.empty(); | |
this.collection.each(this.appendTodo); | |
return this; |
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 Todo = Backbone.Model.extend({ | |
defaults: { | |
completed: false, | |
priority: 0 | |
}, | |
initialize: function() { | |
this.on('change', function() { | |
window.changed = true; | |
}); |
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 outputLocation = require('path').resolve(__dirname, 'file.json'); | |
require('fs').writeFile(outputLocation, JSON.stringify(data, null, 4), function(err) { | |
if(err) { | |
console.log(err); | |
} else { | |
console.log("JSON saved to "+outputLocation); | |
} | |
}); |
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
nav#primary { | |
ul { | |
li { | |
a { | |
&:hover { | |
} | |
} | |
// context | |
&.home { |
OlderNewer