├── .nvmrc ├── gh-pages ├── bower_components │ ├── jquery │ │ ├── src │ │ │ ├── outro.js │ │ │ ├── selector.js │ │ │ ├── var │ │ │ │ ├── deletedIds.js │ │ │ │ ├── rnotwhite.js │ │ │ │ ├── strundefined.js │ │ │ │ ├── class2type.js │ │ │ │ ├── pnum.js │ │ │ │ ├── push.js │ │ │ │ ├── slice.js │ │ │ │ ├── concat.js │ │ │ │ ├── indexOf.js │ │ │ │ ├── toString.js │ │ │ │ ├── hasOwn.js │ │ │ │ └── support.js │ │ │ ├── ajax │ │ │ │ ├── var │ │ │ │ │ ├── rquery.js │ │ │ │ │ └── nonce.js │ │ │ │ ├── parseXML.js │ │ │ │ ├── parseJSON.js │ │ │ │ ├── load.js │ │ │ │ ├── script.js │ │ │ │ ├── jsonp.js │ │ │ │ └── xhr.js │ │ │ ├── css │ │ │ │ ├── var │ │ │ │ │ ├── rmargin.js │ │ │ │ │ ├── cssExpand.js │ │ │ │ │ ├── rnumnonpx.js │ │ │ │ │ └── isHidden.js │ │ │ │ ├── hiddenVisibleSelectors.js │ │ │ │ ├── swap.js │ │ │ │ ├── addGetHookIf.js │ │ │ │ ├── defaultDisplay.js │ │ │ │ ├── curCSS.js │ │ │ │ └── support.js │ │ │ ├── manipulation │ │ │ │ ├── var │ │ │ │ │ └── rcheckableType.js │ │ │ │ ├── _evalUrl.js │ │ │ │ └── support.js │ │ │ ├── core │ │ │ │ ├── var │ │ │ │ │ └── rsingleTag.js │ │ │ │ ├── parseHTML.js │ │ │ │ ├── access.js │ │ │ │ ├── init.js │ │ │ │ └── ready.js │ │ │ ├── traversing │ │ │ │ ├── var │ │ │ │ │ └── rneedsContext.js │ │ │ │ └── findFilter.js │ │ │ ├── attributes.js │ │ │ ├── deprecated.js │ │ │ ├── effects │ │ │ │ ├── animatedSelector.js │ │ │ │ ├── support.js │ │ │ │ └── Tween.js │ │ │ ├── selector-sizzle.js │ │ │ ├── event │ │ │ │ ├── ajax.js │ │ │ │ ├── support.js │ │ │ │ └── alias.js │ │ │ ├── data │ │ │ │ ├── support.js │ │ │ │ └── accepts.js │ │ │ ├── queue │ │ │ │ └── delay.js │ │ │ ├── jquery.js │ │ │ ├── exports │ │ │ │ ├── global.js │ │ │ │ └── amd.js │ │ │ ├── intro.js │ │ │ ├── wrap.js │ │ │ ├── support.js │ │ │ ├── dimensions.js │ │ │ ├── attributes │ │ │ │ ├── support.js │ │ │ │ ├── prop.js │ │ │ │ ├── classes.js │ │ │ │ ├── val.js │ │ │ │ └── attr.js │ │ │ ├── serialize.js │ │ │ ├── queue.js │ │ │ ├── deferred.js │ │ │ ├── traversing.js │ │ │ ├── callbacks.js │ │ │ └── offset.js │ │ ├── bower.json │ │ ├── .bower.json │ │ └── MIT-LICENSE.txt │ └── slick-carousel │ │ ├── slick │ │ ├── ajax-loader.gif │ │ ├── fonts │ │ │ ├── slick.eot │ │ │ ├── slick.ttf │ │ │ ├── slick.woff │ │ │ └── slick.svg │ │ ├── config.rb │ │ ├── slick.scss │ │ ├── slick.css │ │ ├── slick-theme.css │ │ └── slick-theme.scss │ │ ├── Makefile │ │ ├── component.json │ │ ├── package.json │ │ ├── bower.json │ │ ├── .bower.json │ │ ├── slick.jquery.json │ │ ├── LICENSE │ │ └── CONTRIBUTING.markdown ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── stylesheets │ ├── github-highlight.css │ └── tablesaw.stackonly.css └── javascripts │ └── tablesaw.stackonly.js ├── .bowerrc ├── demo └── lilac.jpg ├── .gitignore ├── bower.json ├── package.json ├── docs ├── src │ └── scripts │ │ └── slick-lightbox.coffee.html └── index.html ├── LICENSE ├── Gulpfile.coffee ├── Gulpfile.js ├── index.jade ├── dist ├── slick-lightbox.css ├── slick-lightbox.min.js.map └── slick-lightbox.min.js ├── src └── styles │ ├── slick-lightbox.css │ └── slick-lightbox.less └── README.md /.nvmrc: -------------------------------------------------------------------------------- 1 | v8.16.0 2 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | })); 2 | -------------------------------------------------------------------------------- /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "gh-pages/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /demo/lilac.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/slick-lightbox/HEAD/demo/lilac.jpg -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define([ "./selector-sizzle" ]); 2 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/var/deletedIds.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return []; 3 | }); 4 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\?/); 3 | }); 4 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\S+/g); 3 | }); 4 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^margin/); 3 | }); 4 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/var/strundefined.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return typeof undefined; 3 | }); 4 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // [[Class]] -> type pairs 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return [ "Top", "Right", "Bottom", "Left" ]; 3 | }); 4 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^(?:checkbox|radio)$/i); 3 | }); 4 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source; 3 | }); 4 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../core" 3 | ], function( jQuery ) { 4 | return jQuery.now(); 5 | }); 6 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/var/push.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./deletedIds" 3 | ], function( deletedIds ) { 4 | return deletedIds.push; 5 | }); 6 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/var/slice.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./deletedIds" 3 | ], function( deletedIds ) { 4 | return deletedIds.slice; 5 | }); 6 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/var/concat.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./deletedIds" 3 | ], function( deletedIds ) { 4 | return deletedIds.concat; 5 | }); 6 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./deletedIds" 3 | ], function( deletedIds ) { 4 | return deletedIds.indexOf; 5 | }); 6 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/var/toString.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.toString; 5 | }); 6 | -------------------------------------------------------------------------------- /gh-pages/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/slick-lightbox/HEAD/gh-pages/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /gh-pages/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/slick-lightbox/HEAD/gh-pages/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /gh-pages/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/slick-lightbox/HEAD/gh-pages/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /gh-pages/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/slick-lightbox/HEAD/gh-pages/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.hasOwnProperty; 5 | }); 6 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // Match a standalone tag 3 | return (/^<(\w+)\s*\/?>(?:<\/\1>|)$/); 4 | }); 5 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/var/support.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // All support tests are defined in their respective modules. 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /gh-pages/bower_components/slick-carousel/slick/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/slick-lightbox/HEAD/gh-pages/bower_components/slick-carousel/slick/ajax-loader.gif -------------------------------------------------------------------------------- /gh-pages/bower_components/slick-carousel/slick/fonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/slick-lightbox/HEAD/gh-pages/bower_components/slick-carousel/slick/fonts/slick.eot -------------------------------------------------------------------------------- /gh-pages/bower_components/slick-carousel/slick/fonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/slick-lightbox/HEAD/gh-pages/bower_components/slick-carousel/slick/fonts/slick.ttf -------------------------------------------------------------------------------- /gh-pages/bower_components/slick-carousel/slick/fonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/slick-lightbox/HEAD/gh-pages/bower_components/slick-carousel/slick/fonts/slick.woff -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../var/pnum" 3 | ], function( pnum ) { 4 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); 5 | }); 6 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../core", 3 | "../../selector" 4 | ], function( jQuery ) { 5 | return jQuery.expr.match.needsContext; 6 | }); 7 | -------------------------------------------------------------------------------- /gh-pages/bower_components/slick-carousel/Makefile: -------------------------------------------------------------------------------- 1 | 2 | build: components slick.js slick.css 3 | @component build --dev 4 | 5 | components: component.json 6 | @component install --dev 7 | 8 | .PHONY: clean 9 | -------------------------------------------------------------------------------- /gh-pages/bower_components/slick-carousel/slick/config.rb: -------------------------------------------------------------------------------- 1 | css_dir = "." 2 | sass_dir = "." 3 | images_dir = "." 4 | fonts_dir = "fonts" 5 | relative_assets = true 6 | 7 | output_style = :compact 8 | line_comments = false 9 | 10 | preferred_syntax = :scss -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/attributes.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./core", 3 | "./attributes/val", 4 | "./attributes/attr", 5 | "./attributes/prop", 6 | "./attributes/classes" 7 | ], function( jQuery ) { 8 | 9 | // Return jQuery for attributes-only inclusion 10 | return jQuery; 11 | }); 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | src/bower_components/slick-carousel/* 3 | src/bower_components/slick-carousel/**/* 4 | !src/bower_components/slick-carousel/slick/slick-theme.css 5 | !src/bower_components/slick-carousel/slick 6 | src/bower_components/jquery/* 7 | !src/bower_components/jquery/dist 8 | 9 | *.sublime-* 10 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/deprecated.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./core", 3 | "./traversing" 4 | ], function( jQuery ) { 5 | 6 | // The number of elements contained in the matched element set 7 | jQuery.fn.size = function() { 8 | return this.length; 9 | }; 10 | 11 | jQuery.fn.andSelf = jQuery.fn.addBack; 12 | 13 | }); 14 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/effects/animatedSelector.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../core", 3 | "../selector", 4 | "../effects" 5 | ], function( jQuery ) { 6 | 7 | jQuery.expr.filters.animated = function( elem ) { 8 | return jQuery.grep(jQuery.timers, function( fn ) { 9 | return elem === fn.elem; 10 | }).length; 11 | }; 12 | 13 | }); 14 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/manipulation/_evalUrl.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../ajax" 3 | ], function( jQuery ) { 4 | 5 | jQuery._evalUrl = function( url ) { 6 | return jQuery.ajax({ 7 | url: url, 8 | type: "GET", 9 | dataType: "script", 10 | async: false, 11 | global: false, 12 | "throws": true 13 | }); 14 | }; 15 | 16 | return jQuery._evalUrl; 17 | 18 | }); 19 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./core", 3 | "sizzle" 4 | ], function( jQuery, Sizzle ) { 5 | 6 | jQuery.find = Sizzle; 7 | jQuery.expr = Sizzle.selectors; 8 | jQuery.expr[":"] = jQuery.expr.pseudos; 9 | jQuery.unique = Sizzle.uniqueSort; 10 | jQuery.text = Sizzle.getText; 11 | jQuery.isXMLDoc = Sizzle.isXML; 12 | jQuery.contains = Sizzle.contains; 13 | 14 | }); 15 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../core", 3 | "../event" 4 | ], function( jQuery ) { 5 | 6 | // Attach a bunch of functions for handling common AJAX events 7 | jQuery.each( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ) { 8 | jQuery.fn[ type ] = function( fn ) { 9 | return this.on( type, fn ); 10 | }; 11 | }); 12 | 13 | }); 14 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "slick-lightbox", 3 | "version": "0.1.18", 4 | "ignore": [ 5 | "node_modules", 6 | "gh-pages", 7 | "docs", 8 | "demo", 9 | "src/bower_components", 10 | "src/index.html" 11 | ], 12 | "main": [ 13 | "dist/slick-lightbox.js", 14 | "dist/slick-lightbox.min.js", 15 | "dist/slick-lightbox.css" 16 | ], 17 | "dependencies": { 18 | "jquery": "~1", 19 | "slick-carousel": "~1.4.1" 20 | } 21 | } -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/css/var/isHidden.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../core", 3 | "../../selector" 4 | // css is assumed 5 | ], function( jQuery ) { 6 | 7 | return function( elem, el ) { 8 | // isHidden might be called from jQuery#filter function; 9 | // in that case, element will be second argument 10 | elem = el || elem; 11 | return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem ); 12 | }; 13 | }); 14 | -------------------------------------------------------------------------------- /gh-pages/bower_components/slick-carousel/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "slick", 3 | "repo": "kenwheeler/slick", 4 | "description": "the last carousel you'll ever need", 5 | "version": "1.4.1", 6 | "keywords": ["ui", "jquery", "carousel", "responsive", "slider"], 7 | "dependencies": { 8 | "component/jquery": "*" 9 | }, 10 | "development": {}, 11 | "scripts": { 12 | "slick/slick.js": "slick.js" 13 | }, 14 | "styles": { 15 | "slick/slick.css": "slick.css", 16 | "slick/slick-theme.css": "slick-theme.css" 17 | } 18 | } -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/data/support.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../var/support" 3 | ], function( support ) { 4 | 5 | (function() { 6 | var div = document.createElement( "div" ); 7 | 8 | // Execute the test only if not already executed in another module. 9 | if (support.deleteExpando == null) { 10 | // Support: IE<9 11 | support.deleteExpando = true; 12 | try { 13 | delete div.test; 14 | } catch( e ) { 15 | support.deleteExpando = false; 16 | } 17 | } 18 | 19 | // Null elements to avoid leaks in IE. 20 | div = null; 21 | })(); 22 | 23 | return support; 24 | 25 | }); 26 | -------------------------------------------------------------------------------- /gh-pages/bower_components/slick-carousel/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "slick-carousel", 3 | "version": "1.4.1", 4 | "description": "the last carousel you'll ever need", 5 | "main": "slick/slick.js", 6 | "repository": { 7 | "type": "git", 8 | "url": "https://github.com/kenwheeler/slick.git" 9 | }, 10 | "keywords": [ 11 | "carousel", 12 | "slick", 13 | "responsive" 14 | ], 15 | "author": "Ken Wheeler", 16 | "license": "MIT", 17 | "bugs": { 18 | "url": "https://github.com/kenwheeler/slick/issues" 19 | } 20 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "slick-lightbox", 3 | "version": "0.1.18", 4 | "devDependencies": { 5 | "coffee-script": "~1.7.1", 6 | "coffeedoc": "~0.3.1", 7 | "ecstatic": "~0.5.1", 8 | "gulp": "~3.8", 9 | "gulp-coffee": "~1.4.1", 10 | "gulp-cssmin": "^0.1.7", 11 | "gulp-less": "~1.2.3", 12 | "gulp-shell": "~0.2.4", 13 | "gulp-uglifyjs": "^0.6.1", 14 | "gulp-util": "~2.2.14", 15 | "jade": "~1.3.1", 16 | "less": "~1.7.2", 17 | "lodash": "^3.6.0", 18 | "marked": "~0.3.2", 19 | "through": "^2.3.7", 20 | "uglify-js": "^2.4.19" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery", 3 | "version": "1.11.3", 4 | "main": "dist/jquery.js", 5 | "license": "MIT", 6 | "ignore": [ 7 | "**/.*", 8 | "build", 9 | "dist/cdn", 10 | "speed", 11 | "test", 12 | "*.md", 13 | "AUTHORS.txt", 14 | "Gruntfile.js", 15 | "package.json" 16 | ], 17 | "devDependencies": { 18 | "sizzle": "2.1.1-jquery.2.1.2", 19 | "requirejs": "2.1.10", 20 | "qunit": "1.14.0", 21 | "sinon": "1.8.1" 22 | }, 23 | "keywords": [ 24 | "jquery", 25 | "javascript", 26 | "library" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/css/hiddenVisibleSelectors.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../core", 3 | "./support", 4 | "../selector", 5 | "../css" 6 | ], function( jQuery, support ) { 7 | 8 | jQuery.expr.filters.hidden = function( elem ) { 9 | // Support: Opera <= 12.12 10 | // Opera reports offsetWidths and offsetHeights less than zero on some elements 11 | return elem.offsetWidth <= 0 && elem.offsetHeight <= 0 || 12 | (!support.reliableHiddenOffsets() && 13 | ((elem.style && elem.style.display) || jQuery.css( elem, "display" )) === "none"); 14 | }; 15 | 16 | jQuery.expr.filters.visible = function( elem ) { 17 | return !jQuery.expr.filters.hidden( elem ); 18 | }; 19 | 20 | }); 21 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../core", 3 | "../queue", 4 | "../effects" // Delay is optional because of this dependency 5 | ], function( jQuery ) { 6 | 7 | // Based off of the plugin by Clint Helfers, with permission. 8 | // http://blindsignals.com/index.php/2009/07/jquery-delay/ 9 | jQuery.fn.delay = function( time, type ) { 10 | time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; 11 | type = type || "fx"; 12 | 13 | return this.queue( type, function( next, hooks ) { 14 | var timeout = setTimeout( next, time ); 15 | hooks.stop = function() { 16 | clearTimeout( timeout ); 17 | }; 18 | }); 19 | }; 20 | 21 | return jQuery.fn.delay; 22 | }); 23 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/data/accepts.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../core" 3 | ], function( jQuery ) { 4 | 5 | /** 6 | * Determines whether an object can have data 7 | */ 8 | jQuery.acceptData = function( elem ) { 9 | var noData = jQuery.noData[ (elem.nodeName + " ").toLowerCase() ], 10 | nodeType = +elem.nodeType || 1; 11 | 12 | // Do not set data on non-element DOM nodes because it will not be cleared (#8335). 13 | return nodeType !== 1 && nodeType !== 9 ? 14 | false : 15 | 16 | // Nodes accept data unless otherwise specified; rejection can be conditional 17 | !noData || noData !== true && elem.getAttribute("classid") === noData; 18 | }; 19 | 20 | return jQuery.acceptData; 21 | }); 22 | -------------------------------------------------------------------------------- /gh-pages/bower_components/jquery/src/css/swap.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../core" 3 | ], function( jQuery ) { 4 | 5 | // A method for quickly swapping in/out CSS properties to get correct calculations. 6 | jQuery.swap = function( elem, options, callback, args ) { 7 | var ret, name, 8 | old = {}; 9 | 10 | // Remember the old values, and insert the new ones 11 | for ( name in options ) { 12 | old[ name ] = elem.style[ name ]; 13 | elem.style[ name ] = options[ name ]; 14 | } 15 | 16 | ret = callback.apply( elem, args || [] ); 17 | 18 | // Revert the old values 19 | for ( name in options ) { 20 | elem.style[ name ] = old[ name ]; 21 | } 22 | 23 | return ret; 24 | }; 25 | 26 | return jQuery.swap; 27 | 28 | }); 29 | -------------------------------------------------------------------------------- /docs/src/scripts/slick-lightbox.coffee.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 || t |