Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorbrantje <brantje@gmail.com>2016-10-12 21:33:45 +0300
committerbrantje <brantje@gmail.com>2016-10-12 21:33:45 +0300
commit61d27ac1b6d61d24ab6aab91cb82ea556a6558ae (patch)
tree11b5bb614d23ebba1cfa764bf9ac640d72ba6083 /js
parent1a74def8dc02475ee0df2b9cd25d77ae7cb3007e (diff)
Remove unused code
Diffstat (limited to 'js')
-rw-r--r--js/app/services/fileservice.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/app/services/fileservice.js b/js/app/services/fileservice.js
index 495869ef..1c7745e1 100644
--- a/js/app/services/fileservice.js
+++ b/js/app/services/fileservice.js
@@ -72,7 +72,7 @@
});
},
dataURItoBlob: function (dataURI, ftype) {
- var byteString, mimeString, ab, ia, bb, i;
+ var byteString, ab, ia, bb, i;
// convert base64 to raw binary data held in a string
// doesn't handle URLEncoded DataURIs - see SO answer #6850276 for code that does this
byteString = atob(dataURI.split(',')[1]);