bootstrap-waitingfor
Advanced tools
Weekly downloads
Readme
"Waiting for..." modal dialog with progress bar for Bootstrap.
See this plugin in action:rocket:: http://bootsnipp.com/snippets/featured/quotwaiting-forquot-modal-dialog
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:
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:
gulp
gulp
doesn't return any errorstest/run.html
in your favorite browserSetting up the environment:
Node.js
npm install -g bower
npm install -g gulp
npm install
bower install
: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>
<head>
<meta charset="utf-8">
<title>boostrap-waitingfor</title>
<link href="bower_components/bootstrap/dist/css/bootstrap.css" rel="stylesheet" />
<link href="bower_components/bootstrap/dist/css/bootstrap-theme.css" rel="stylesheet" />
</head>
<body>
<script src="../bower_components/jquery/dist/jquery.min.js"></script>
<script src="../bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="../build/bootstrap-waitingfor.js"></script>
</body>
</html>
FAQs
Waiting for dialog with progress bar for Bootstrap
The npm package bootstrap-waitingfor receives a total of 696 weekly downloads. As such, bootstrap-waitingfor popularity was classified as not popular.
We found that bootstrap-waitingfor demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.