Skip to content

Commit d2789e3

Browse files
committed
2.6.6 Release
1 parent 379cb78 commit d2789e3

File tree

9 files changed

+13
-10
lines changed

9 files changed

+13
-10
lines changed

Changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Change Log
22
============================
3+
### Version 2.6.6 ###
4+
* Only set `visibility` to `visible` during `mouseover` event
5+
36
### Version 2.6.5 ###
47
* Made additional updates to fix from 2.6.3 for fixing chrome update issue
58

SimpleAjaxUploader.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Simple Ajax Uploader
3-
* Version 2.6.5
3+
* Version 2.6.6
44
* https://github.com/LPology/Simple-Ajax-Uploader
55
*
66
* Copyright 2012-2019 LPology, LLC
@@ -312,7 +312,6 @@ ss.copyLayout = function( from, to ) {
312312
ss.addStyles( to, {
313313
position: 'absolute',
314314
display: 'block',
315-
visibility: 'visible',
316315
left : box.left + 'px',
317316
top : box.top + 'px',
318317
width : from.offsetWidth + 'px',
@@ -1063,6 +1062,7 @@ ss.SimpleUpload.prototype = {
10631062

10641063
self._overBtn = elem;
10651064
ss.copyLayout( elem, self._input.parentNode );
1065+
self._input.parentNode.style.visibility = 'visible';
10661066
});
10671067

10681068
// Support keyboard interaction

SimpleAjaxUploader.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "simple-ajax-uploader",
33
"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.",
4-
"version": "2.6.5",
4+
"version": "2.6.6",
55
"main": "SimpleAjaxUploader.js",
66
"keywords": [
77
"ajax",

extras/Uploader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* Simple Ajax Uploader
5-
* Version 2.6.5
5+
* Version 2.6.6
66
* https://github.com/LPology/Simple-Ajax-Uploader
77
*
88
* Copyright 2012-2019 LPology, LLC

extras/cors.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* Simple Ajax Uploader
5-
* Version 2.6.5
5+
* Version 2.6.6
66
* https://github.com/LPology/Simple-Ajax-Uploader
77
*
88
* Copyright 2012-2019 LPology, LLC

extras/sessionProgress.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* Simple Ajax Uploader
5-
* Version 2.6.5
5+
* Version 2.6.6
66
* https://github.com/LPology/Simple-Ajax-Uploader
77
*
88
* Copyright 2012-2019 LPology, LLC

extras/uploadProgress.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* Simple Ajax Uploader
5-
* Version 2.6.5
5+
* Version 2.6.6
66
* https://github.com/LPology/Simple-Ajax-Uploader
77
*
88
* Copyright 2012-2019 LPology, LLC

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "simple-ajax-uploader",
33
"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.",
4-
"version": "2.6.5",
4+
"version": "2.6.6",
55
"main": "SimpleAjaxUploader.js",
66
"keywords": [
77
"ajax",

0 commit comments

Comments
 (0)