git clone --depth 1 [REPO_PATH]
git fetch --unshallow
git remote set-branches origin [SPECIFIC-BRANCH or * for all branches]
| function isEven(value) { | |
| if (value%2 === 0) | |
| return true; | |
| else | |
| return false; | |
| } |
| .triangle-up { | |
| border-bottom: 10px solid red; | |
| border-left: 10px solid transparent; | |
| border-right: 10px solid transparent; | |
| height: 0; | |
| width: 0; | |
| } | |
| .triangle-down { |
| /* https://github.com/DimitarChristoff/primish/ */ | |
| /* requires: [primish.js, options.js] */ | |
| /* Example... */ | |
| var App = App = {}; | |
| ;(function(Class, window, document){ | |
| "use strict"; |
| var GLOBAL_NAME = {}; | |
| ;(function($, window, document){ | |
| 'use strict'; | |
| var PLUGIN_NAME = this.PLUGIN_NAME = function(element, options){ | |
| this.element = $(element); | |
| this.options = $.extend({}, this.options, options); | |
| this.initialise(); |