Created
June 26, 2016 21:05
-
-
Save nkundu/22b3bbddde11b03eb4429f7e42f6ef4a to your computer and use it in GitHub Desktop.
Show busy modal blockUI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// use with spinner CSS | |
var showBusyModal = function () { | |
$.blockUI({ | |
message: '<div class="spinner"></div><br />Please wait...', | |
css: { | |
border: 'none', | |
padding: '15px', | |
backgroundColor: '#000', | |
'-webkit-border-radius': '10px', | |
'-moz-border-radius': '10px', | |
opacity: .5, | |
color: '#fff' | |
} | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment