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
| http://www.marchettidesign.net/fullby/ | |
| http://www.eleventhemes.com/gridly/ | |
| http://themeforest.net/item/gridlocked-minimalistic-wordpress-portfolio-theme/full_screen_preview/245947?ref=cinim | |
| http://themes.zeotheory.com/?theme=spaces | |
| http://themeforest.net/item/hoarder-responsive-wordpress-blog-theme/full_screen_preview/2919551?ref=cinim | |
| http://themeforest.net/item/gridnik-elite-portfolio-wordpress-theme/full_screen_preview/145673?ref=cinim | |
| http://themeforest.net/item/quickly-handcrafted-wordpress-theme/full_screen_preview/4670677?ref=cinim | |
| http://themeforest.net/item/dreame-responsive-wordpress-theme/full_screen_preview/5438510?ref=cinim |
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
| goog.provide( "lib.display.CanvasText" ); | |
| goog.require( "lib.display.IDisplayObject" ); | |
| goog.require( "lib.display.CanvasSprite" ); | |
| goog.require( "goog.dom" ); | |
| goog.require( "goog.events.Event" ); | |
| goog.require( "goog.asserts" ); | |
| goog.require( "easy.data.domain.placeholder.font.FontStyle" ); | |
| goog.require( "goog.math.Coordinate" ); | |
| goog.require( "easy.data.domain.Color" ); |
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
| $(document).ready(function() { | |
| var ctl = new Leap.Controller({enableGestures: true}); | |
| var swiper = ctl.gesture('swipe'); | |
| var totalDistance = 0; | |
| var tolerance = 50; | |
| var cooloff = 300; |
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
| canvas { margin: 20px; } |
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
| var _getUniqItemsFromArray = function(array){ | |
| var temp = {}; | |
| var uniqueArray = []; | |
| for (var i = 0; i < array.length; i++) { | |
| temp[array[i]] = true; | |
| } | |
| for (var k in temp) { |
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
| var _getFiles = function(dir) { | |
| var results = []; | |
| filesystem.readdirSync(dir).forEach(function(file) { | |
| file = dir+'/'+file; | |
| var stat = filesystem.statSync(file); | |
| if (stat && stat.isDirectory()) { |
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 walk(dir) { | |
| var results = []; | |
| fs.readdirSync(dir).forEach(function(file) { | |
| file = dir+'/'+file; | |
| var stat = fs.statSync(file); | |
| if (stat && stat.isDirectory()) { |
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
| o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o | |
| o o o o | |
| o o o o | |
| o o | |
| o o o o o o o o o o o o | |
| o o o o o o | |
| o 4 o 5 o o 2 o 3 o | |
| o o o o o o | |
| o o o o o o o o o o o o o o o o o o | |
| o o o o |
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
| sequence = ['1st','2nd','3rd','4th','5th','6th']; | |
| function displaySequence(round, callback, i){ | |
| var i = i ? i : 0; | |
| if (i===round) { callback(); return; } | |
| console.log(sequence[i] + ' > add'); | |
| setTimeout(function(){ | |
| console.log(sequence[i] + ' > rmv'); |
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
| vsetkySubory = getFromApi('zoznamVsetkychSuborov'); | |
| vsetkySubory.forEach(function(subor, index){ | |
| vsetkySubory[index] = parseTemplate(getFromApi(subor)); | |
| callback(); | |
| }) | |
| function callback(){ | |
| if (i===vsetkySubory.length) { | |
| downloadZip() } else { i++ } |