Waiting for dialog with progress bar for Bootstrap
npm install bootstrap-waitingfor"Waiting for..." modal dialog with progress bar for Bootstrap.
See this plugin in action:rocket:: http://bootsnipp.com/snippets/featured/quotwaiting-forquot-modal-dialog
* AMD-compatible
* Configurable
You can install this module with bower bower install bootstrap-waitingfor and include the files from build directory.
In your javascript code write something like this:
``js`
waitingDialog.show('I\'m waiting');
setTimeout(function () {
waitingDialog.hide();
}, 1000);
See src/waitingfor.js for additional options.
:fire:Before:fire: making a pull request do the following steps:
1. Run gulpgulp
2. Make sure doesn't return any errorstest/run.html
3. Open in your favorite browser
4. Make sure there are no errors in dev console
5. Make sure all dialogs behave correctly
Setting up the environment:
1. Install Node.jsnpm install -g bower
2. Go to your project directory
3. Run npm install -g gulp
4. Run npm install
5. Run bower install
6. Run
:sunflower:You should only modify files inside src or test directories!:sunflower: Files in the build directory are generated automatically after running gulp.
HTML page example:
`html``