=> Unsupported uglify
This commit is contained in:
parent
255e3b85bb
commit
e18e446eef
1 changed files with 2 additions and 2 deletions
|
|
@ -29,10 +29,10 @@ angular.module('copayApp.services').factory('clipboardService', function ($http,
|
|||
cb(nodeWebkitService.readFromClipboard());
|
||||
} else {
|
||||
navigator.clipboard.readText()
|
||||
.then(text => {
|
||||
.then(function (text) {
|
||||
cb(text);
|
||||
})
|
||||
.catch(err => {
|
||||
.catch(function (err) {
|
||||
$log.debug("Clipboard reading is not supported in browser..");
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue