-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b885933
commit d294a48
Showing
18 changed files
with
75 additions
and
72 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* progress, resize, thumbnail, preview, validation and CORS | ||
* FileAPI Flash shim for old browsers not supporting FormData | ||
* @author Danial <[email protected]> | ||
* @version 12.2.7 | ||
* @version 12.2.8 | ||
*/ | ||
|
||
(function () { | ||
|
@@ -424,7 +424,7 @@ if (!window.FileReader) { | |
* AngularJS file upload directives and services. Supoorts: file upload/drop/paste, resume, cancel/abort, | ||
* progress, resize, thumbnail, preview, validation and CORS | ||
* @author Danial <[email protected]> | ||
* @version 12.2.7 | ||
* @version 12.2.8 | ||
*/ | ||
|
||
if (window.XMLHttpRequest && !(window.FileAPI && FileAPI.shouldLoad)) { | ||
|
@@ -445,7 +445,7 @@ if (window.XMLHttpRequest && !(window.FileAPI && FileAPI.shouldLoad)) { | |
|
||
var ngFileUpload = angular.module('ngFileUpload', []); | ||
|
||
ngFileUpload.version = '12.2.7'; | ||
ngFileUpload.version = '12.2.8'; | ||
|
||
ngFileUpload.service('UploadBase', ['$http', '$q', '$timeout', function ($http, $q, $timeout) { | ||
var upload = this; | ||
|
@@ -1494,7 +1494,8 @@ ngFileUpload.directive('ngfSelect', ['$parse', '$timeout', '$compile', 'Upload', | |
var size = resizeParams; | ||
if (directiveName === 'ngfThumbnail') { | ||
if (!size) { | ||
size = {width: elem[0].clientWidth, height: elem[0].clientHeight}; | ||
size = {width: elem[0].naturalWidth || elem[0].clientWidth, | ||
height: elem[0].naturalHeight || elem[0].clientHeight}; | ||
} | ||
if (size.width === 0 && window.getComputedStyle) { | ||
var style = getComputedStyle(elem[0]); | ||
|
@@ -1990,8 +1991,8 @@ ngFileUpload.service('UploadValidate', ['UploadDataUrl', '$q', '$timeout', funct | |
.css('max-width', 'none !important').css('max-height', 'none !important'); | ||
|
||
function success() { | ||
var width = img[0].clientWidth; | ||
var height = img[0].clientHeight; | ||
var width = img[0].naturalWidth || img[0].clientWidth; | ||
var height = img[0].naturalHeight || img[0].clientHeight; | ||
img.remove(); | ||
file.$ngfWidth = width; | ||
file.$ngfHeight = height; | ||
|
@@ -2005,23 +2006,23 @@ ngFileUpload.service('UploadValidate', ['UploadDataUrl', '$q', '$timeout', funct | |
|
||
img.on('load', success); | ||
img.on('error', error); | ||
var count = 0; | ||
|
||
function checkLoadError() { | ||
var secondsCounter = 0; | ||
function checkLoadErrorInCaseOfNoCallback() { | ||
$timeout(function () { | ||
if (img[0].parentNode) { | ||
if (img[0].clientWidth) { | ||
success(); | ||
} else if (count > 10) { | ||
} else if (secondsCounter++ > 10) { | ||
error(); | ||
} else { | ||
checkLoadError(); | ||
checkLoadErrorInCaseOfNoCallback(); | ||
} | ||
} | ||
}, 1000); | ||
} | ||
|
||
checkLoadError(); | ||
checkLoadErrorInCaseOfNoCallback(); | ||
|
||
angular.element(document.getElementsByTagName('body')[0]).append(img); | ||
}, function () { | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* progress, resize, thumbnail, preview, validation and CORS | ||
* FileAPI Flash shim for old browsers not supporting FormData | ||
* @author Danial <[email protected]> | ||
* @version 12.2.7 | ||
* @version 12.2.8 | ||
*/ | ||
|
||
(function () { | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* AngularJS file upload directives and services. Supoorts: file upload/drop/paste, resume, cancel/abort, | ||
* progress, resize, thumbnail, preview, validation and CORS | ||
* @author Danial <[email protected]> | ||
* @version 12.2.7 | ||
* @version 12.2.8 | ||
*/ | ||
|
||
if (window.XMLHttpRequest && !(window.FileAPI && FileAPI.shouldLoad)) { | ||
|
@@ -23,7 +23,7 @@ if (window.XMLHttpRequest && !(window.FileAPI && FileAPI.shouldLoad)) { | |
|
||
var ngFileUpload = angular.module('ngFileUpload', []); | ||
|
||
ngFileUpload.version = '12.2.7'; | ||
ngFileUpload.version = '12.2.8'; | ||
|
||
ngFileUpload.service('UploadBase', ['$http', '$q', '$timeout', function ($http, $q, $timeout) { | ||
var upload = this; | ||
|
@@ -1072,7 +1072,8 @@ ngFileUpload.directive('ngfSelect', ['$parse', '$timeout', '$compile', 'Upload', | |
var size = resizeParams; | ||
if (directiveName === 'ngfThumbnail') { | ||
if (!size) { | ||
size = {width: elem[0].clientWidth, height: elem[0].clientHeight}; | ||
size = {width: elem[0].naturalWidth || elem[0].clientWidth, | ||
height: elem[0].naturalHeight || elem[0].clientHeight}; | ||
} | ||
if (size.width === 0 && window.getComputedStyle) { | ||
var style = getComputedStyle(elem[0]); | ||
|
@@ -1568,8 +1569,8 @@ ngFileUpload.service('UploadValidate', ['UploadDataUrl', '$q', '$timeout', funct | |
.css('max-width', 'none !important').css('max-height', 'none !important'); | ||
|
||
function success() { | ||
var width = img[0].clientWidth; | ||
var height = img[0].clientHeight; | ||
var width = img[0].naturalWidth || img[0].clientWidth; | ||
var height = img[0].naturalHeight || img[0].clientHeight; | ||
img.remove(); | ||
file.$ngfWidth = width; | ||
file.$ngfHeight = height; | ||
|
@@ -1583,23 +1584,23 @@ ngFileUpload.service('UploadValidate', ['UploadDataUrl', '$q', '$timeout', funct | |
|
||
img.on('load', success); | ||
img.on('error', error); | ||
var count = 0; | ||
|
||
function checkLoadError() { | ||
var secondsCounter = 0; | ||
function checkLoadErrorInCaseOfNoCallback() { | ||
$timeout(function () { | ||
if (img[0].parentNode) { | ||
if (img[0].clientWidth) { | ||
success(); | ||
} else if (count > 10) { | ||
} else if (secondsCounter++ > 10) { | ||
error(); | ||
} else { | ||
checkLoadError(); | ||
checkLoadErrorInCaseOfNoCallback(); | ||
} | ||
} | ||
}, 1000); | ||
} | ||
|
||
checkLoadError(); | ||
checkLoadErrorInCaseOfNoCallback(); | ||
|
||
angular.element(document.getElementsByTagName('body')[0]).append(img); | ||
}, function () { | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* progress, resize, thumbnail, preview, validation and CORS | ||
* FileAPI Flash shim for old browsers not supporting FormData | ||
* @author Danial <[email protected]> | ||
* @version 12.2.7 | ||
* @version 12.2.8 | ||
*/ | ||
|
||
(function () { | ||
|
@@ -424,7 +424,7 @@ if (!window.FileReader) { | |
* AngularJS file upload directives and services. Supoorts: file upload/drop/paste, resume, cancel/abort, | ||
* progress, resize, thumbnail, preview, validation and CORS | ||
* @author Danial <[email protected]> | ||
* @version 12.2.7 | ||
* @version 12.2.8 | ||
*/ | ||
|
||
if (window.XMLHttpRequest && !(window.FileAPI && FileAPI.shouldLoad)) { | ||
|
@@ -445,7 +445,7 @@ if (window.XMLHttpRequest && !(window.FileAPI && FileAPI.shouldLoad)) { | |
|
||
var ngFileUpload = angular.module('ngFileUpload', []); | ||
|
||
ngFileUpload.version = '12.2.7'; | ||
ngFileUpload.version = '12.2.8'; | ||
|
||
ngFileUpload.service('UploadBase', ['$http', '$q', '$timeout', function ($http, $q, $timeout) { | ||
var upload = this; | ||
|
@@ -1494,7 +1494,8 @@ ngFileUpload.directive('ngfSelect', ['$parse', '$timeout', '$compile', 'Upload', | |
var size = resizeParams; | ||
if (directiveName === 'ngfThumbnail') { | ||
if (!size) { | ||
size = {width: elem[0].clientWidth, height: elem[0].clientHeight}; | ||
size = {width: elem[0].naturalWidth || elem[0].clientWidth, | ||
height: elem[0].naturalHeight || elem[0].clientHeight}; | ||
} | ||
if (size.width === 0 && window.getComputedStyle) { | ||
var style = getComputedStyle(elem[0]); | ||
|
@@ -1990,8 +1991,8 @@ ngFileUpload.service('UploadValidate', ['UploadDataUrl', '$q', '$timeout', funct | |
.css('max-width', 'none !important').css('max-height', 'none !important'); | ||
|
||
function success() { | ||
var width = img[0].clientWidth; | ||
var height = img[0].clientHeight; | ||
var width = img[0].naturalWidth || img[0].clientWidth; | ||
var height = img[0].naturalHeight || img[0].clientHeight; | ||
img.remove(); | ||
file.$ngfWidth = width; | ||
file.$ngfHeight = height; | ||
|
@@ -2005,23 +2006,23 @@ ngFileUpload.service('UploadValidate', ['UploadDataUrl', '$q', '$timeout', funct | |
|
||
img.on('load', success); | ||
img.on('error', error); | ||
var count = 0; | ||
|
||
function checkLoadError() { | ||
var secondsCounter = 0; | ||
function checkLoadErrorInCaseOfNoCallback() { | ||
$timeout(function () { | ||
if (img[0].parentNode) { | ||
if (img[0].clientWidth) { | ||
success(); | ||
} else if (count > 10) { | ||
} else if (secondsCounter++ > 10) { | ||
error(); | ||
} else { | ||
checkLoadError(); | ||
checkLoadErrorInCaseOfNoCallback(); | ||
} | ||
} | ||
}, 1000); | ||
} | ||
|
||
checkLoadError(); | ||
checkLoadErrorInCaseOfNoCallback(); | ||
|
||
angular.element(document.getElementsByTagName('body')[0]).append(img); | ||
}, function () { | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* progress, resize, thumbnail, preview, validation and CORS | ||
* FileAPI Flash shim for old browsers not supporting FormData | ||
* @author Danial <[email protected]> | ||
* @version 12.2.7 | ||
* @version 12.2.8 | ||
*/ | ||
|
||
(function () { | ||
|
Oops, something went wrong.