├── .editorconfig ├── .gitignore ├── .jshintrc ├── Gruntfile.js ├── assets ├── css │ ├── editor.css │ └── editor.scss └── js │ ├── editor.js │ └── editor.min.js ├── includes ├── class-wc-shortcodes-admin.php └── wc-shortcodes-editor-i18n.php ├── languages └── woocommerce-shortcodes.pot ├── package.json ├── readme.txt └── woocommerce-shortcodes.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-shortcodes/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .sass-cache/ 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-shortcodes/HEAD/.jshintrc -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-shortcodes/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /assets/css/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-shortcodes/HEAD/assets/css/editor.css -------------------------------------------------------------------------------- /assets/css/editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-shortcodes/HEAD/assets/css/editor.scss -------------------------------------------------------------------------------- /assets/js/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-shortcodes/HEAD/assets/js/editor.js -------------------------------------------------------------------------------- /assets/js/editor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-shortcodes/HEAD/assets/js/editor.min.js -------------------------------------------------------------------------------- /includes/class-wc-shortcodes-admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-shortcodes/HEAD/includes/class-wc-shortcodes-admin.php -------------------------------------------------------------------------------- /includes/wc-shortcodes-editor-i18n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-shortcodes/HEAD/includes/wc-shortcodes-editor-i18n.php -------------------------------------------------------------------------------- /languages/woocommerce-shortcodes.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-shortcodes/HEAD/languages/woocommerce-shortcodes.pot -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-shortcodes/HEAD/package.json -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-shortcodes/HEAD/readme.txt -------------------------------------------------------------------------------- /woocommerce-shortcodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-shortcodes/HEAD/woocommerce-shortcodes.php --------------------------------------------------------------------------------