THE DARJEELING LIMITED (ORIGINAL SOUNDTRACK) (Format: 12" Colored Vinyl)
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 jsonEqual (a, b) { | |
return JSON.stringify(a) === JSON.stringify(b) | |
} | |
function originalIfUnchanged(state, nextState) { | |
if(state === nextState) { | |
return state | |
} | |
return jsonEqual(state, nextState) ? state : nextState |
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
<dict> | |
<key>name</key> | |
<string>,</string> | |
<key>scope</key> | |
<string>meta.delimiter.comma</string> | |
<key>settings</key> | |
<dict> | |
<key>foreground</key> | |
<string>#4E566B</string> | |
</dict> |
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
// ---- | |
// libsass (v3.1.0) | |
// ---- | |
$baseUnit: 8 | |
@function snap($value) | |
@return (round($value / $baseUnit) * $baseUnit +px) | |
body |
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
<button class="button -blue -large -rounded overrides -disable -right">I'm a button!</button> |
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
/* | |
* 'Highly configurable' mutable plugin boilerplate | |
* Author: @markdalgleish | |
* Further changes, comments: @addyosmani | |
* Licensed under the MIT license | |
*/ | |
// Note that with this pattern, as per Alex Sexton's, the plugin logic | |
// hasn't been nested in a jQuery plugin. Instead, we just use | |
// jQuery for its instantiation. |
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
APP = { | |
init: function() { | |
// Check for controller and action js | |
var body = document.body; | |
var controllerJs = this[body.getAttribute("data-controller")]; | |
var actionJs = controllerJs ? controllerJs[body.getAttribute("data-action")] : false; | |
// Cache global vars | |
this.$body = $(body); |
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
// Vendor helpers and resets | |
@import 'compass/css3'; | |
@import 'normalize'; | |
// Variables and mixins | |
@import 'setup/colors'; | |
@import 'setup/defaults'; | |
@import 'setup/fonts'; | |
@import 'setup/mixins'; |
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
# Store javascript references to sprites in spriteList.js | |
# Author: [email protected] | |
on_sprite_saved do |file_path| | |
# Path to file where sprite data is to be stored | |
javascript_file = "public/javascripts/base/compass_sprites.js" | |
path_segments = file_path.split('/public').last.split('/') | |
file_name = path_segments.pop | |
image_path = path_segments.join('/') + '/' | |
base_folder = path_segments[2] | |
parent_folder = path_segments[path_segments.length - 1] |
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
-webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC); |
NewerOlder