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
/* clearfix */ | |
.clearfix:before, .clearfix:after { | |
content: ""; | |
display: block; | |
overflow: hidden; | |
} | |
.clearfix:after { clear: both; } | |
.clearfix { zoom: 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
$("#").bind("animationend webkitAnimationEnd MSAnimationEnd oAnimationEnd", 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
$("#").bind("transitionend webkitTransitionEnd MSTransitionEnd oTransitionEnd", 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
var _self = {}; | |
_self.$ = {};//jQuery objects container | |
_self.init = function() { | |
_self.$.someElem = $("#someElem"); | |
}; | |
$(function() { | |
_self.init(); | |
}); |
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
/** | |
* console.log workaround for IE(6,7) | |
* | |
**/ | |
if (!('console' in window)) { | |
window.console = {}; | |
window.console.log = function(str) { | |
return str; | |
}; | |
} |
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
-moz-transition: all .4s cubic-bezier(.70, 0, .60, 1); | |
-webkit-transition: all .4s cubic-bezier(.70, 0, .60, 1); | |
-ms-transition: all .4s cubic-bezier(.70, 0, .60, 1); | |
-o-transition: all .4s cubic-bezier(.70, 0, .60, 1); | |
transition: all .4s cubic-bezier(.70, 0, .60, 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
white-space: nowrap; | |
overflow: hidden; | |
-webkit-text-overflow: ellipsis; | |
-o-text-overflow: ellipsis; | |
text-overflow: ellipsis; |
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
Show hidden characters
{ | |
"font_face": "Ricty", | |
"font_size": 17, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"draw_white_space": "all", | |
"word_wrap": "false", | |
"highlight_line": true, |
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
{ | |
// Custom snippets definitions, as per https://github.com/emmetio/emmet/blob/master/snippets.json | |
"snippets": { | |
"html": { | |
"abbreviations": { | |
"ab": "<a href=\"#\" target=\"_blank\">", | |
"av": "<a href=\"javascript: void 0;\" onclick=\"\">" | |
} | |
} | |
} |
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
[ | |
{"keys": ["ctrl+tab"], "command": "next_view"}, | |
{"keys": ["ctrl+shift+tab"], "command": "prev_view"}, | |
{"keys": ["ctrl+pagedown"], "command": "next_view_in_stack"}, | |
{"keys": ["ctrl+pageup"], "command": "prev_view_in_stack"}, | |
{"keys": ["ctrl+shift+r"], "command": "browser_refresh", "args": { | |
"auto_save": true, | |
"delay": 0, | |
"activate_browser": true, | |
"browser_name": "all" |
OlderNewer