├── .gitignore ├── README.md ├── accordion ├── README.md ├── assets │ └── _accordion.scss └── snippets │ └── accordion.liquid ├── addtocartanimation ├── jquery.path.js └── path.js ├── collection-filters ├── README.md ├── assets │ └── collection-filters.scss ├── config │ └── settings_schema.json └── snippets │ └── collection-filters.liquid ├── collection-layout-switcher ├── README.md └── snippets │ └── collection-views.liquid ├── color-variants-as-products └── product-form.liquid ├── currency-converter ├── README.md ├── assets │ └── js_jquery.currencies.min.js ├── config │ └── settings_schema.json ├── layout │ └── theme.liquid └── snippets │ ├── currencies-switcher.liquid │ └── currencies.liquid ├── featured-collection ├── README.md ├── assets │ └── _featured-collection.scss ├── config │ └── settings_schema.json └── snippets │ └── featured-collection.liquid ├── geo-ip ├── README.md ├── assets │ ├── jquery-1.11.3.js │ └── jquery.cookie.js ├── config │ └── settings_schema.json └── snippets │ ├── geoip-redirect-cover.liquid │ ├── geoip-redirect-meta.liquid │ ├── geoip-redirect-script.liquid │ └── geoip-redirect-switcher.liquid ├── hp-banner ├── README.md ├── assets │ └── _hp-banner.scss ├── config │ └── settings_schema.json └── snippets │ └── hp-banner.liquid ├── hp-slideshow ├── README.md ├── assets │ ├── _hp-slideshow.scss │ └── jquery.hp-slideshow.js ├── config │ └── settings_schema.json └── snippets │ └── hp-slideshow.liquid ├── infinite-scrolling ├── assets │ └── js_tricky3.ajaxpagination.js └── snippets │ └── ajaxpagination-settings.liquid ├── js ├── directives │ ├── backtotop.init.js │ ├── hovergroup.init.js │ └── stickyheader.init.js ├── polyfills │ ├── MutationObserver.js │ ├── requestAnimationFrame.js │ └── weakmap.js └── vendor │ ├── debounce.js │ └── jquery.delayedhover.js ├── klaviyo-form ├── README.md └── theme │ └── snippets │ └── klaviyo-form.liquid ├── linklist-menus ├── linklist.liquid └── read.md ├── newsletter-popup-desktop ├── README.md ├── src │ ├── js │ │ ├── directives │ │ │ └── desktopnewsletter.init.js │ │ └── main.js │ └── scss │ │ └── snippets │ │ └── _newsletter-popup-desktop.scss └── theme │ ├── config │ └── settings_schema.json │ ├── layout │ └── theme.liquid │ └── snippets │ └── newsletter-popup-desktop.liquid ├── newsletter-popup-mobile ├── README.md ├── src │ ├── js │ │ └── directives │ │ │ └── mobilenewsletter.init.js │ └── scss │ │ └── snippets │ │ └── _newsletter-popup-mobile.scss └── theme │ ├── config │ └── settings_schema.json │ ├── layout │ └── theme.liquid │ └── snippets │ └── newsletter-popup-mobile.liquid ├── pagination └── pagination.liquid ├── social-share.liquid ├── sort-by.liquid ├── strip-image.liquid ├── swatches ├── README.md ├── layout │ └── theme.liquid └── snippets │ ├── product-form.liquid │ ├── selectCallback.liquid │ └── swatch.liquid └── table-of-contents └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/README.md -------------------------------------------------------------------------------- /accordion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/accordion/README.md -------------------------------------------------------------------------------- /accordion/assets/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/accordion/assets/_accordion.scss -------------------------------------------------------------------------------- /accordion/snippets/accordion.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/accordion/snippets/accordion.liquid -------------------------------------------------------------------------------- /addtocartanimation/jquery.path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/addtocartanimation/jquery.path.js -------------------------------------------------------------------------------- /addtocartanimation/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/addtocartanimation/path.js -------------------------------------------------------------------------------- /collection-filters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/collection-filters/README.md -------------------------------------------------------------------------------- /collection-filters/assets/collection-filters.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/collection-filters/assets/collection-filters.scss -------------------------------------------------------------------------------- /collection-filters/config/settings_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/collection-filters/config/settings_schema.json -------------------------------------------------------------------------------- /collection-filters/snippets/collection-filters.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/collection-filters/snippets/collection-filters.liquid -------------------------------------------------------------------------------- /collection-layout-switcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/collection-layout-switcher/README.md -------------------------------------------------------------------------------- /collection-layout-switcher/snippets/collection-views.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/collection-layout-switcher/snippets/collection-views.liquid -------------------------------------------------------------------------------- /color-variants-as-products/product-form.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/color-variants-as-products/product-form.liquid -------------------------------------------------------------------------------- /currency-converter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/currency-converter/README.md -------------------------------------------------------------------------------- /currency-converter/assets/js_jquery.currencies.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/currency-converter/assets/js_jquery.currencies.min.js -------------------------------------------------------------------------------- /currency-converter/config/settings_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/currency-converter/config/settings_schema.json -------------------------------------------------------------------------------- /currency-converter/layout/theme.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/currency-converter/layout/theme.liquid -------------------------------------------------------------------------------- /currency-converter/snippets/currencies-switcher.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/currency-converter/snippets/currencies-switcher.liquid -------------------------------------------------------------------------------- /currency-converter/snippets/currencies.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/currency-converter/snippets/currencies.liquid -------------------------------------------------------------------------------- /featured-collection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/featured-collection/README.md -------------------------------------------------------------------------------- /featured-collection/assets/_featured-collection.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /featured-collection/config/settings_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/featured-collection/config/settings_schema.json -------------------------------------------------------------------------------- /featured-collection/snippets/featured-collection.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/featured-collection/snippets/featured-collection.liquid -------------------------------------------------------------------------------- /geo-ip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/geo-ip/README.md -------------------------------------------------------------------------------- /geo-ip/assets/jquery-1.11.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/geo-ip/assets/jquery-1.11.3.js -------------------------------------------------------------------------------- /geo-ip/assets/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/geo-ip/assets/jquery.cookie.js -------------------------------------------------------------------------------- /geo-ip/config/settings_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/geo-ip/config/settings_schema.json -------------------------------------------------------------------------------- /geo-ip/snippets/geoip-redirect-cover.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/geo-ip/snippets/geoip-redirect-cover.liquid -------------------------------------------------------------------------------- /geo-ip/snippets/geoip-redirect-meta.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/geo-ip/snippets/geoip-redirect-meta.liquid -------------------------------------------------------------------------------- /geo-ip/snippets/geoip-redirect-script.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/geo-ip/snippets/geoip-redirect-script.liquid -------------------------------------------------------------------------------- /geo-ip/snippets/geoip-redirect-switcher.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/geo-ip/snippets/geoip-redirect-switcher.liquid -------------------------------------------------------------------------------- /hp-banner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/hp-banner/README.md -------------------------------------------------------------------------------- /hp-banner/assets/_hp-banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/hp-banner/assets/_hp-banner.scss -------------------------------------------------------------------------------- /hp-banner/config/settings_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/hp-banner/config/settings_schema.json -------------------------------------------------------------------------------- /hp-banner/snippets/hp-banner.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/hp-banner/snippets/hp-banner.liquid -------------------------------------------------------------------------------- /hp-slideshow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/hp-slideshow/README.md -------------------------------------------------------------------------------- /hp-slideshow/assets/_hp-slideshow.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp-slideshow/assets/jquery.hp-slideshow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/hp-slideshow/assets/jquery.hp-slideshow.js -------------------------------------------------------------------------------- /hp-slideshow/config/settings_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/hp-slideshow/config/settings_schema.json -------------------------------------------------------------------------------- /hp-slideshow/snippets/hp-slideshow.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/hp-slideshow/snippets/hp-slideshow.liquid -------------------------------------------------------------------------------- /infinite-scrolling/assets/js_tricky3.ajaxpagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/infinite-scrolling/assets/js_tricky3.ajaxpagination.js -------------------------------------------------------------------------------- /infinite-scrolling/snippets/ajaxpagination-settings.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/infinite-scrolling/snippets/ajaxpagination-settings.liquid -------------------------------------------------------------------------------- /js/directives/backtotop.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/js/directives/backtotop.init.js -------------------------------------------------------------------------------- /js/directives/hovergroup.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/js/directives/hovergroup.init.js -------------------------------------------------------------------------------- /js/directives/stickyheader.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/js/directives/stickyheader.init.js -------------------------------------------------------------------------------- /js/polyfills/MutationObserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/js/polyfills/MutationObserver.js -------------------------------------------------------------------------------- /js/polyfills/requestAnimationFrame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/js/polyfills/requestAnimationFrame.js -------------------------------------------------------------------------------- /js/polyfills/weakmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/js/polyfills/weakmap.js -------------------------------------------------------------------------------- /js/vendor/debounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/js/vendor/debounce.js -------------------------------------------------------------------------------- /js/vendor/jquery.delayedhover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/js/vendor/jquery.delayedhover.js -------------------------------------------------------------------------------- /klaviyo-form/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/klaviyo-form/README.md -------------------------------------------------------------------------------- /klaviyo-form/theme/snippets/klaviyo-form.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/klaviyo-form/theme/snippets/klaviyo-form.liquid -------------------------------------------------------------------------------- /linklist-menus/linklist.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/linklist-menus/linklist.liquid -------------------------------------------------------------------------------- /linklist-menus/read.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/linklist-menus/read.md -------------------------------------------------------------------------------- /newsletter-popup-desktop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/newsletter-popup-desktop/README.md -------------------------------------------------------------------------------- /newsletter-popup-desktop/src/js/directives/desktopnewsletter.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/newsletter-popup-desktop/src/js/directives/desktopnewsletter.init.js -------------------------------------------------------------------------------- /newsletter-popup-desktop/src/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/newsletter-popup-desktop/src/js/main.js -------------------------------------------------------------------------------- /newsletter-popup-desktop/src/scss/snippets/_newsletter-popup-desktop.scss: -------------------------------------------------------------------------------- 1 | .newsletter-popup-desktop { 2 | // Add your styles here 3 | } -------------------------------------------------------------------------------- /newsletter-popup-desktop/theme/config/settings_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/newsletter-popup-desktop/theme/config/settings_schema.json -------------------------------------------------------------------------------- /newsletter-popup-desktop/theme/layout/theme.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/newsletter-popup-desktop/theme/layout/theme.liquid -------------------------------------------------------------------------------- /newsletter-popup-desktop/theme/snippets/newsletter-popup-desktop.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/newsletter-popup-desktop/theme/snippets/newsletter-popup-desktop.liquid -------------------------------------------------------------------------------- /newsletter-popup-mobile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/newsletter-popup-mobile/README.md -------------------------------------------------------------------------------- /newsletter-popup-mobile/src/js/directives/mobilenewsletter.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/newsletter-popup-mobile/src/js/directives/mobilenewsletter.init.js -------------------------------------------------------------------------------- /newsletter-popup-mobile/src/scss/snippets/_newsletter-popup-mobile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/newsletter-popup-mobile/src/scss/snippets/_newsletter-popup-mobile.scss -------------------------------------------------------------------------------- /newsletter-popup-mobile/theme/config/settings_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/newsletter-popup-mobile/theme/config/settings_schema.json -------------------------------------------------------------------------------- /newsletter-popup-mobile/theme/layout/theme.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/newsletter-popup-mobile/theme/layout/theme.liquid -------------------------------------------------------------------------------- /newsletter-popup-mobile/theme/snippets/newsletter-popup-mobile.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/newsletter-popup-mobile/theme/snippets/newsletter-popup-mobile.liquid -------------------------------------------------------------------------------- /pagination/pagination.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/pagination/pagination.liquid -------------------------------------------------------------------------------- /social-share.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/social-share.liquid -------------------------------------------------------------------------------- /sort-by.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/sort-by.liquid -------------------------------------------------------------------------------- /strip-image.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/strip-image.liquid -------------------------------------------------------------------------------- /swatches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/swatches/README.md -------------------------------------------------------------------------------- /swatches/layout/theme.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/swatches/layout/theme.liquid -------------------------------------------------------------------------------- /swatches/snippets/product-form.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/swatches/snippets/product-form.liquid -------------------------------------------------------------------------------- /swatches/snippets/selectCallback.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/swatches/snippets/selectCallback.liquid -------------------------------------------------------------------------------- /swatches/snippets/swatch.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/swatches/snippets/swatch.liquid -------------------------------------------------------------------------------- /table-of-contents/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocomet/snippets/HEAD/table-of-contents/readme.md --------------------------------------------------------------------------------