Skip to content

Instantly share code, notes, and snippets.

@mrfyda
Created December 20, 2013 10:19
Show Gist options
  • Save mrfyda/8052915 to your computer and use it in GitHub Desktop.
Save mrfyda/8052915 to your computer and use it in GitHub Desktop.
(function(window, document, $) {
var FANCYBOX_OVERLAY = ".fancybox-overlay";
$(document).ready(function () {
var paceLoading = {
hideLoading: function() {
Pace.stop();
$(FANCYBOX_OVERLAY).show();
},
showLoading: function() {
Pace.start();
$(FANCYBOX_OVERLAY).hide();
}
};
$.extend($.fancybox, paceLoading);
});
})(window, document, jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment