mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-24 12:06:15 +01:00
dont copy formatted code
This commit is contained in:
parent
11cbe3b7bb
commit
76da9b1f18
@ -7,7 +7,7 @@ angular
|
|||||||
'<span class="totp-countdown"><span class="totp-sec">{{sec}}</span>' +
|
'<span class="totp-countdown"><span class="totp-sec">{{sec}}</span>' +
|
||||||
'<svg><g><circle class="totp-circle inner" r="12.6" cy="16" cx="16" style="stroke-dashoffset: {{dash}}px;"></circle>' +
|
'<svg><g><circle class="totp-circle inner" r="12.6" cy="16" cx="16" style="stroke-dashoffset: {{dash}}px;"></circle>' +
|
||||||
'<circle class="totp-circle outer" r="14" cy="16" cx="16"></circle></g></svg></span>' +
|
'<circle class="totp-circle outer" r="14" cy="16" cx="16"></circle></g></svg></span>' +
|
||||||
'<span class="totp-code" id="totp-code">{{code}}</span>' +
|
'<span class="totp-code" id="totp-code">{{codeFormatted}}</span>' +
|
||||||
'<a href="#" stop-click class="btn btn-link" ngclipboard ngclipboard-error="clipboardError(e)" ' +
|
'<a href="#" stop-click class="btn btn-link" ngclipboard ngclipboard-error="clipboardError(e)" ' +
|
||||||
'data-clipboard-text="{{code}}" uib-tooltip="Copy Code" tooltip-placement="right">' +
|
'data-clipboard-text="{{code}}" uib-tooltip="Copy Code" tooltip-placement="right">' +
|
||||||
'<i class="fa fa-clipboard"></i></a>' +
|
'<i class="fa fa-clipboard"></i></a>' +
|
||||||
@ -115,7 +115,8 @@ angular
|
|||||||
totp.getCode(scope.key).then(function (code) {
|
totp.getCode(scope.key).then(function (code) {
|
||||||
$timeout(function () {
|
$timeout(function () {
|
||||||
if (code) {
|
if (code) {
|
||||||
scope.code = code.substring(0, 3) + ' ' + code.substring(3);
|
scope.codeFormatted = code.substring(0, 3) + ' ' + code.substring(3);
|
||||||
|
scope.code = code;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
scope.code = null;
|
scope.code = null;
|
||||||
|
Loading…
Reference in New Issue
Block a user