open telegram link to user, resizing faircoin qr address to 300x300pixels, changed travel icon, copy faircoin address string

This commit is contained in:
arnaucode
2018-02-18 16:26:08 +01:00
parent 9c3d3eff8d
commit 40111e6993
11 changed files with 41 additions and 13 deletions

View File

@@ -41,8 +41,8 @@ angular.module('app.editUser', ['pascalprecht.translate'])
sourceType: Camera.PictureSourceType.PHOTOLIBRARY,
allowEdit: true,
encodingType: Camera.EncodingType.JPEG,
targetWidth: 100,
targetHeight: 100,
targetWidth: 300,
targetHeight: 300,
popoverOptions: CameraPopoverOptions,
saveToPhotoAlbum: false,
correctOrientation:true

View File

@@ -187,4 +187,9 @@ angular.module('app.user', ['pascalprecht.translate'])
console.log("show image");
$scope.openModal();
};
$scope.openTelegram = function(telegramuser) {
window.open('http://telegram.me/' + telegramuser, '_system', 'location=yes');
return false;
};
});