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
" | |
".vimrc File | |
"Written by Jack Franklin | |
"A lot of this came from Jeffrey Way's video tutorials & his .vimrc file | |
"(jeffrey-way.com, net.tutsplus.com) | |
" | |
"Tabs | |
set tabstop=4 | |
set shiftwidth=4 |
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
" | |
".vimrc File | |
"Written by Jack Franklin | |
"A lot of this came from Jeffrey Way's video tutorials & his .vimrc file | |
"(jeffrey-way.com, net.tutsplus.com) | |
" | |
"Tabs | |
set tabstop=4 | |
set shiftwidth=4 |
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
" | |
".vimrc File | |
"Written by Jack Franklin | |
"A lot of this came from Jeffrey Way's video tutorials & his .vimrc file | |
"(jeffrey-way.com, net.tutsplus.com) | |
" | |
"Tabs | |
set tabstop=4 | |
set shiftwidth=4 |
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
@font-face { | |
font-family: 'LeagueGothicRegular'; | |
src: url('lib/font/leaguegothic/League_Gothic-webfont.eot'); | |
src: url('lib/font/leaguegothic/League_Gothic-webfont.eot?#iefix') format('embedded-opentype'), | |
url('lib/font/leaguegothic/League_Gothic-webfont.woff') format('woff'), | |
url('lib/font/leaguegothic/League_Gothic-webfont.ttf') format('truetype'), | |
url('lib/font/leaguegothic/League_Gothic-webfont.svg#LeagueGothicRegular') format('svg'); | |
font-weight: normal; | |
font-style: normal; |
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(window, document, undefined) { | |
var myLib = {...} | |
window.myLib = myLib; | |
})(window, document); |
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(window, document, undefined) { | |
})(window, document); |
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
jQuery.extend({ | |
forrstApi: function(method,callback,params,options) { | |
var defaults = { | |
apiVersion: 'v2', | |
debugMode: false, | |
url: 'http://forrst.com/api/v2/' | |
}, |
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
if(typeof methods[method] == 'function') { | |
methods[method](); | |
}; |
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 checkAttribute(element, attribute) { | |
var test = document.createElement(element); | |
if (attribute in test) { | |
return true; | |
} else { | |
return false; | |
} | |
} | |
checkAttribute("input", "required"); |
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
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> | |
<script>window.jQuery || document.write("<script src='js/libs/jquery-1.6.2.min.js'>\x3C/script>")</script> |
OlderNewer