Skip to content

Commit

Permalink
Version 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaspare Sganga committed May 25, 2016
1 parent 6bb04de commit 13e1a0d
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ A flexible loading overlay jQuery plugin

---

Documentation and examples at http://gasparesganga.com/labs/jquery-loading-overlay
Documentation and examples at http://gasparesganga.com/labs/jquery-loading-overlay/
4 changes: 2 additions & 2 deletions extras/loadingoverlay_progress/loadingoverlay_progress.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/***************************************************************************************************
LoadingOverlay Extras - Progress
Author : Gaspare Sganga
Version : 1.2
Version : 1.3
License : MIT
Documentation : http://gasparesganga.com/labs/jquery-loading-overlay
Documentation : http://gasparesganga.com/labs/jquery-loading-overlay/
****************************************************************************************************/
var LoadingOverlayProgress = function(options){
var _bar;
Expand Down
4 changes: 2 additions & 2 deletions extras/loadingoverlay_progress/loadingoverlay_progress.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions src/loadingoverlay.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/***************************************************************************************************
LoadingOverlay - A flexible loading overlay jQuery plugin
Author : Gaspare Sganga
Version : 1.2
Version : 1.3
License : MIT
Documentation : http://gasparesganga.com/labs/jquery-loading-overlay
Documentation : http://gasparesganga.com/labs/jquery-loading-overlay/
****************************************************************************************************/
(function($, undefined){
var _defaults = {
Expand All @@ -16,7 +16,7 @@ LoadingOverlay - A flexible loading overlay jQuery plugin
minSize : "20px",
resizeInterval : 0,
size : "50%",
zIndex : 1
zIndex : undefined
};

$.LoadingOverlaySetup = function(settings){
Expand Down Expand Up @@ -65,10 +65,10 @@ LoadingOverlay - A flexible loading overlay jQuery plugin
"display" : "flex",
"flex-direction" : "column",
"align-items" : "center",
"justify-content" : "center",
"z-index" : settings.zIndex
"justify-content" : "center"
}
});
if (settings.zIndex !== undefined) overlay.css("z-index", settings.zIndex);
if (settings.image) overlay.css({
"background-image" : "url("+settings.image+")",
"background-position" : "center center",
Expand Down
6 changes: 3 additions & 3 deletions src/loadingoverlay.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 13e1a0d

Please sign in to comment.