Skip to content

Commit

Permalink
linefeed
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaya Kessler committed Oct 15, 2015
1 parent 80dca10 commit c8bdbf9
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/ImagePreloader/Image.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ module.exports = function(src) {
}

return image;
};
};
2 changes: 1 addition & 1 deletion src/ImagePreloader/ImageLoaded.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ function loaded(image, callback) {
}
}

module.exports = loaded;
module.exports = loaded;
2 changes: 1 addition & 1 deletion src/ImagePreloader/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,4 +138,4 @@ module.exports = function(parent) {
imagePreloader.deepSearch = true;

return imagePreloader;
};
};
2 changes: 1 addition & 1 deletion src/Overlay/LoadingBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ module.exports = function() {
loadingBar.barColor = '#fff';

return loadingBar;
};
};
2 changes: 1 addition & 1 deletion src/Overlay/Percentage.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ module.exports = function() {
percentage.barColor = '#fff';

return percentage;
};
};
2 changes: 1 addition & 1 deletion src/Overlay/PercentageParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ function parsePercentage(percentage) {
return parseInt(percentage);
}

module.exports = parsePercentage;
module.exports = parsePercentage;
2 changes: 1 addition & 1 deletion src/Overlay/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,4 @@ module.exports = function(parentElement) {
overlay.showPercentage = false;

return overlay;
};
};
4 changes: 2 additions & 2 deletions src/Polyfills/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
if (!Function.prototype.bind) {
Function.prototype.bind = function (oThis) {
Function.prototype.bind = function(oThis) {
'use strict';
if (typeof this !== 'function') {
// closest thing possible to the ECMAScript 5
Expand Down Expand Up @@ -67,4 +67,4 @@ if (typeof Object.create !== 'function') {
return obj;
};
})();
}
}
2 changes: 1 addition & 1 deletion src/QueryLoader/TempOverlay.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ module.exports = function() {
window.clearInterval(timeout);
}
}, 1);
};
};
2 changes: 1 addition & 1 deletion src/QueryLoader/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,4 @@ module.exports = function(element, options) {
}

return queryLoader;
};
};
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var TempOverlay = require('./QueryLoader/TempOverlay');
if (window.jQuery || window.Zepto) {
(function($) {
'use strict';
$.fn.queryLoader2 = function(options){
$.fn.queryLoader2 = function(options) {
return this.each(function() {
(QueryLoader2(this, options));
});
Expand All @@ -28,4 +28,4 @@ if (typeof define === 'function' && define.amd) {
}

window.QueryLoader2 = QueryLoader2;
TempOverlay();
TempOverlay();

0 comments on commit c8bdbf9

Please sign in to comment.