Skip to content

Commit

Permalink
2.6.5 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
LPology committed Sep 8, 2019
1 parent 240f9b2 commit d1adf9f
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 17 deletions.
12 changes: 7 additions & 5 deletions SimpleAjaxUploader.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/**
* Simple Ajax Uploader
* Version 2.6.4
* Version 2.6.5
* https://github.com/LPology/Simple-Ajax-Uploader
*
* Copyright 2012-2017 LPology, LLC
* Copyright 2012-2019 LPology, LLC
* Released under the MIT license
*/

Expand Down Expand Up @@ -310,7 +310,9 @@ ss.copyLayout = function( from, to ) {
var box = ss.getBox( from );

ss.addStyles( to, {
position: 'relative',
position: 'absolute',
display: 'block',
visibility: 'visible',
left : box.left + 'px',
top : box.top + 'px',
width : from.offsetWidth + 'px',
Expand Down Expand Up @@ -1061,7 +1063,6 @@ ss.SimpleUpload.prototype = {

self._overBtn = elem;
ss.copyLayout( elem, self._input.parentNode );
self._input.parentNode.style.visibility = 'visible';
});

// Support keyboard interaction
Expand Down Expand Up @@ -2000,6 +2001,7 @@ ss.extendObj( ss.SimpleUpload.prototype, {
ss.addStyles( div, {
'display' : 'none',
'position' : 'relative',
'visibility' : 'hidden',
'overflow' : 'hidden',
'margin' : 0,
'padding' : 0,
Expand All @@ -2013,7 +2015,7 @@ ss.extendObj( ss.SimpleUpload.prototype, {
}

ss.addStyles( this._input, {
'position' : 'relative',
'position' : 'absolute',
'right' : 0,
'margin' : 0,
'padding' : 0,
Expand Down
4 changes: 2 additions & 2 deletions SimpleAjaxUploader.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "simple-ajax-uploader",
"description": "A Javascript plugin for cross-browser Ajax file uploading. Supports drag and drop, CORS, and multiple file uploading with progress bars. Works in IE7-9, mobile, and all modern browsers.",
"version": "2.6.4",
"version": "2.6.5",
"main": "SimpleAjaxUploader.js",
"keywords": [
"ajax",
Expand Down
4 changes: 2 additions & 2 deletions extras/Uploader.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

/**
* Simple Ajax Uploader
* Version 2.6.4
* Version 2.6.5
* https://github.com/LPology/Simple-Ajax-Uploader
*
* Copyright 2012-2017 LPology, LLC
* Copyright 2012-2019 LPology, LLC
* Released under the MIT license
*
* View the documentation for an example of how to use this class.
Expand Down
4 changes: 2 additions & 2 deletions extras/cors.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

/**
* Simple Ajax Uploader
* Version 2.6.4
* Version 2.6.5
* https://github.com/LPology/Simple-Ajax-Uploader
*
* Copyright 2012-2017 LPology, LLC
* Copyright 2012-2019 LPology, LLC
* Released under the MIT license
*
*/
Expand Down
4 changes: 2 additions & 2 deletions extras/sessionProgress.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

/**
* Simple Ajax Uploader
* Version 2.6.4
* Version 2.6.5
* https://github.com/LPology/Simple-Ajax-Uploader
*
* Copyright 2012-2017 LPology, LLC
* Copyright 2012-2019 LPology, LLC
* Released under the MIT license
*
* Returns upload progress updates for browsers that don't support the HTML5 File API.
Expand Down
4 changes: 2 additions & 2 deletions extras/uploadProgress.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

/**
* Simple Ajax Uploader
* Version 2.6.4
* Version 2.6.5
* https://github.com/LPology/Simple-Ajax-Uploader
*
* Copyright 2012-2017 LPology, LLC
* Copyright 2012-2019 LPology, LLC
* Released under the MIT license
*
* Returns upload progress updates for browsers that don't support the HTML5 File API.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "simple-ajax-uploader",
"description": "A Javascript plugin for cross-browser Ajax file uploading. Supports drag and drop, CORS, and multiple file uploading with progress bars. Works in IE7-9, mobile, and all modern browsers.",
"version": "2.6.4",
"version": "2.6.5",
"main": "SimpleAjaxUploader.js",
"keywords": [
"ajax",
Expand Down

0 comments on commit d1adf9f

Please sign in to comment.