Skip to content

Instantly share code, notes, and snippets.

@nkundu
Created June 26, 2016 21:05
Show Gist options
  • Save nkundu/22b3bbddde11b03eb4429f7e42f6ef4a to your computer and use it in GitHub Desktop.
Save nkundu/22b3bbddde11b03eb4429f7e42f6ef4a to your computer and use it in GitHub Desktop.
Show busy modal blockUI
// 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