├── .gitignore ├── Gulpfile.js ├── README.md ├── changelog.txt ├── dist ├── nivo-lightbox.min.css └── nivo-lightbox.min.js ├── license.txt ├── nivo-lightbox.css ├── nivo-lightbox.js ├── package.json └── themes └── default ├── close.png ├── close@2x.png ├── default.css ├── loading.gif ├── loading@2x.gif ├── next.png ├── next@2x.png ├── prev.png └── prev@2x.png /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /Gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Nivo-Lightbox-jQuery/HEAD/Gulpfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Nivo-Lightbox-jQuery/HEAD/README.md -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Nivo-Lightbox-jQuery/HEAD/changelog.txt -------------------------------------------------------------------------------- /dist/nivo-lightbox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Nivo-Lightbox-jQuery/HEAD/dist/nivo-lightbox.min.css -------------------------------------------------------------------------------- /dist/nivo-lightbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Nivo-Lightbox-jQuery/HEAD/dist/nivo-lightbox.min.js -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Nivo-Lightbox-jQuery/HEAD/license.txt -------------------------------------------------------------------------------- /nivo-lightbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Nivo-Lightbox-jQuery/HEAD/nivo-lightbox.css -------------------------------------------------------------------------------- /nivo-lightbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Nivo-Lightbox-jQuery/HEAD/nivo-lightbox.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Nivo-Lightbox-jQuery/HEAD/package.json -------------------------------------------------------------------------------- /themes/default/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Nivo-Lightbox-jQuery/HEAD/themes/default/close.png -------------------------------------------------------------------------------- /themes/default/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Nivo-Lightbox-jQuery/HEAD/themes/default/close@2x.png -------------------------------------------------------------------------------- /themes/default/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Nivo-Lightbox-jQuery/HEAD/themes/default/default.css -------------------------------------------------------------------------------- /themes/default/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Nivo-Lightbox-jQuery/HEAD/themes/default/loading.gif -------------------------------------------------------------------------------- /themes/default/loading@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Nivo-Lightbox-jQuery/HEAD/themes/default/loading@2x.gif -------------------------------------------------------------------------------- /themes/default/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Nivo-Lightbox-jQuery/HEAD/themes/default/next.png -------------------------------------------------------------------------------- /themes/default/next@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Nivo-Lightbox-jQuery/HEAD/themes/default/next@2x.png -------------------------------------------------------------------------------- /themes/default/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Nivo-Lightbox-jQuery/HEAD/themes/default/prev.png -------------------------------------------------------------------------------- /themes/default/prev@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Nivo-Lightbox-jQuery/HEAD/themes/default/prev@2x.png --------------------------------------------------------------------------------