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
var _aq = [], | |
funcs = [function () { | |
console.log('Handler 1 executed.'); | |
}, function () { | |
console.log('Handler 2 executed.'); | |
}]; | |
_aq.push(funcs); | |
(function() { |
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
// Appearance | |
// Default styling to form elements | |
@mixin appearance ($value) { | |
-webkit-appearance: $value; | |
-moz-appearance: $value; | |
appearance: $value; | |
} | |
@mixin arrow($direction: up, $size: 5px, $color: #444) { | |
width: 0; |
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
// Facebook Border | |
.facebook-border { | |
border: 1px solid; | |
border-color: #e5e6e9 #dfe0e4 #d0d1d5; | |
} | |
// Google Border | |
.google-border { | |
border: 1px solid #d8d8d8; | |
border-bottom-width: 2px; |
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
[{ | |
"name": "Afghanistan", | |
"code": "AF" | |
}, { | |
"name": "Åland Islands", | |
"code": "AX" | |
}, { | |
"name": "Albania", | |
"code": "AL" | |
}, { |
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
moment.tz.add({ | |
"zones": { | |
"Africa/Abidjan": [ | |
"-0:16:8 - LMT 1912 -0:16:8", | |
"0 - GMT" | |
], | |
"Africa/Accra": [ | |
"-0:0:52 - LMT 1918 -0:0:52", | |
"0 Ghana %s" | |
], |
NewerOlder