├── .distignore ├── .editorconfig ├── .gitignore ├── Gruntfile.js ├── README.md ├── assets ├── banner-1544x500.png ├── banner-772x250.png ├── icon-128x128.png ├── icon-256x256.png ├── screenshot-1.png ├── screenshot-2.gif ├── screenshot-3.gif └── screenshot-4.gif ├── languages └── createwithrani-quickpost.pot ├── license.txt ├── package.json ├── quickpost.php ├── readme.txt └── src ├── add-button.js ├── duplicate-menu-item.js ├── editor.scss ├── index.js ├── kebab-menu.js ├── quick-post.js └── utils.js /.distignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithrani/quickpost/HEAD/.distignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithrani/quickpost/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithrani/quickpost/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithrani/quickpost/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithrani/quickpost/HEAD/README.md -------------------------------------------------------------------------------- /assets/banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithrani/quickpost/HEAD/assets/banner-1544x500.png -------------------------------------------------------------------------------- /assets/banner-772x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithrani/quickpost/HEAD/assets/banner-772x250.png -------------------------------------------------------------------------------- /assets/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithrani/quickpost/HEAD/assets/icon-128x128.png -------------------------------------------------------------------------------- /assets/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithrani/quickpost/HEAD/assets/icon-256x256.png -------------------------------------------------------------------------------- /assets/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithrani/quickpost/HEAD/assets/screenshot-1.png -------------------------------------------------------------------------------- /assets/screenshot-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithrani/quickpost/HEAD/assets/screenshot-2.gif -------------------------------------------------------------------------------- /assets/screenshot-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithrani/quickpost/HEAD/assets/screenshot-3.gif -------------------------------------------------------------------------------- /assets/screenshot-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithrani/quickpost/HEAD/assets/screenshot-4.gif -------------------------------------------------------------------------------- /languages/createwithrani-quickpost.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithrani/quickpost/HEAD/languages/createwithrani-quickpost.pot -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithrani/quickpost/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithrani/quickpost/HEAD/package.json -------------------------------------------------------------------------------- /quickpost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithrani/quickpost/HEAD/quickpost.php -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithrani/quickpost/HEAD/readme.txt -------------------------------------------------------------------------------- /src/add-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithrani/quickpost/HEAD/src/add-button.js -------------------------------------------------------------------------------- /src/duplicate-menu-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithrani/quickpost/HEAD/src/duplicate-menu-item.js -------------------------------------------------------------------------------- /src/editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithrani/quickpost/HEAD/src/editor.scss -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithrani/quickpost/HEAD/src/index.js -------------------------------------------------------------------------------- /src/kebab-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithrani/quickpost/HEAD/src/kebab-menu.js -------------------------------------------------------------------------------- /src/quick-post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithrani/quickpost/HEAD/src/quick-post.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithrani/quickpost/HEAD/src/utils.js --------------------------------------------------------------------------------