Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hotfix/update file saver module #49

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-file-saver",
"version": "1.1.3",
"version": "1.1.4",
"main": "dist/angular-file-saver.bundle.js",
"authors": [
"Philipp Alferov <[email protected]>"
Expand All @@ -24,6 +24,6 @@
],
"dependencies": {
"blob-polyfill": "~1.0.20150320",
"file-saver.js": "~1.20150507.2"
"file-saver": "^2.0.4"
}
}
36 changes: 18 additions & 18 deletions dist/angular-file-saver.bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ return /******/ (function(modules) { // webpackBootstrap
/************************************************************************/
/******/ ([
/* 0 */
/***/ function(module, exports, __webpack_require__) {
/***/ (function(module, exports, __webpack_require__) {

'use strict';
/*
Expand All @@ -74,9 +74,9 @@ return /******/ (function(modules) { // webpackBootstrap
.factory('SaveAs', [__webpack_require__(5)]);


/***/ },
/***/ }),
/* 1 */
/***/ function(module, exports) {
/***/ (function(module, exports) {

'use strict';

Expand Down Expand Up @@ -122,9 +122,9 @@ return /******/ (function(modules) { // webpackBootstrap
};


/***/ },
/***/ }),
/* 2 */
/***/ function(module, exports) {
/***/ (function(module, exports) {

'use strict';

Expand All @@ -146,9 +146,9 @@ return /******/ (function(modules) { // webpackBootstrap
};


/***/ },
/***/ }),
/* 3 */
/***/ function(module, exports, __webpack_require__) {
/***/ (function(module, exports, __webpack_require__) {

'use strict';

Expand All @@ -159,9 +159,9 @@ return /******/ (function(modules) { // webpackBootstrap
};


/***/ },
/***/ }),
/* 4 */
/***/ function(module, exports) {
/***/ (function(module, exports) {

/* Blob.js
* A Blob implementation.
Expand Down Expand Up @@ -376,9 +376,9 @@ return /******/ (function(modules) { // webpackBootstrap
}(typeof self !== "undefined" && self || typeof window !== "undefined" && window || this.content || this));


/***/ },
/***/ }),
/* 5 */
/***/ function(module, exports, __webpack_require__) {
/***/ (function(module, exports, __webpack_require__) {

'use strict';

Expand All @@ -387,9 +387,9 @@ return /******/ (function(modules) { // webpackBootstrap
};


/***/ },
/***/ }),
/* 6 */
/***/ function(module, exports, __webpack_require__) {
/***/ (function(module, exports, __webpack_require__) {

var __WEBPACK_AMD_DEFINE_RESULT__;/* FileSaver.js
* A saveAs() FileSaver implementation.
Expand Down Expand Up @@ -581,22 +581,22 @@ return /******/ (function(modules) { // webpackBootstrap
}


/***/ },
/***/ }),
/* 7 */
/***/ function(module, exports) {
/***/ (function(module, exports) {

module.exports = function() { throw new Error("define cannot be used indirect"); };


/***/ },
/***/ }),
/* 8 */
/***/ function(module, exports) {
/***/ (function(module, exports) {

/* WEBPACK VAR INJECTION */(function(__webpack_amd_options__) {module.exports = __webpack_amd_options__;

/* WEBPACK VAR INJECTION */}.call(exports, {}))

/***/ }
/***/ })
/******/ ])
});
;
20 changes: 10 additions & 10 deletions dist/angular-file-saver.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ return /******/ (function(modules) { // webpackBootstrap
/************************************************************************/
/******/ ([
/* 0 */
/***/ function(module, exports, __webpack_require__) {
/***/ (function(module, exports, __webpack_require__) {

'use strict';

Expand All @@ -75,9 +75,9 @@ return /******/ (function(modules) { // webpackBootstrap
.factory('SaveAs', ['$window', 'FileSaverUtils', __webpack_require__(4)]);


/***/ },
/***/ }),
/* 1 */
/***/ function(module, exports) {
/***/ (function(module, exports) {

'use strict';

Expand Down Expand Up @@ -123,9 +123,9 @@ return /******/ (function(modules) { // webpackBootstrap
};


/***/ },
/***/ }),
/* 2 */
/***/ function(module, exports) {
/***/ (function(module, exports) {

'use strict';

Expand All @@ -147,9 +147,9 @@ return /******/ (function(modules) { // webpackBootstrap
};


/***/ },
/***/ }),
/* 3 */
/***/ function(module, exports) {
/***/ (function(module, exports) {

'use strict';

Expand All @@ -164,9 +164,9 @@ return /******/ (function(modules) { // webpackBootstrap
};


/***/ },
/***/ }),
/* 4 */
/***/ function(module, exports) {
/***/ (function(module, exports) {

'use strict';

Expand All @@ -181,7 +181,7 @@ return /******/ (function(modules) { // webpackBootstrap
};


/***/ }
/***/ })
/******/ ])
});
;
Loading