Skip to content

Commit

Permalink
2.6.6 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
LPology committed Sep 8, 2019
1 parent 379cb78 commit d2789e3
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 10 deletions.
3 changes: 3 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Change Log
============================
### Version 2.6.6 ###
* Only set `visibility` to `visible` during `mouseover` event

### Version 2.6.5 ###
* Made additional updates to fix from 2.6.3 for fixing chrome update issue

Expand Down
4 changes: 2 additions & 2 deletions SimpleAjaxUploader.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Simple Ajax Uploader
* Version 2.6.5
* Version 2.6.6
* https://github.com/LPology/Simple-Ajax-Uploader
*
* Copyright 2012-2019 LPology, LLC
Expand Down Expand Up @@ -312,7 +312,6 @@ ss.copyLayout = function( from, to ) {
ss.addStyles( to, {
position: 'absolute',
display: 'block',
visibility: 'visible',
left : box.left + 'px',
top : box.top + 'px',
width : from.offsetWidth + 'px',
Expand Down Expand Up @@ -1063,6 +1062,7 @@ ss.SimpleUpload.prototype = {

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

// Support keyboard interaction
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.5",
"version": "2.6.6",
"main": "SimpleAjaxUploader.js",
"keywords": [
"ajax",
Expand Down
2 changes: 1 addition & 1 deletion extras/Uploader.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* Simple Ajax Uploader
* Version 2.6.5
* Version 2.6.6
* https://github.com/LPology/Simple-Ajax-Uploader
*
* Copyright 2012-2019 LPology, LLC
Expand Down
2 changes: 1 addition & 1 deletion extras/cors.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* Simple Ajax Uploader
* Version 2.6.5
* Version 2.6.6
* https://github.com/LPology/Simple-Ajax-Uploader
*
* Copyright 2012-2019 LPology, LLC
Expand Down
2 changes: 1 addition & 1 deletion extras/sessionProgress.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* Simple Ajax Uploader
* Version 2.6.5
* Version 2.6.6
* https://github.com/LPology/Simple-Ajax-Uploader
*
* Copyright 2012-2019 LPology, LLC
Expand Down
2 changes: 1 addition & 1 deletion extras/uploadProgress.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* Simple Ajax Uploader
* Version 2.6.5
* Version 2.6.6
* https://github.com/LPology/Simple-Ajax-Uploader
*
* Copyright 2012-2019 LPology, LLC
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.5",
"version": "2.6.6",
"main": "SimpleAjaxUploader.js",
"keywords": [
"ajax",
Expand Down

0 comments on commit d2789e3

Please sign in to comment.