toasts when copying from current tab
This commit is contained in:
parent
6bb8b28517
commit
47e5a6d5c5
|
@ -87,6 +87,15 @@ angular
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$scope.clipboardError = function (e, password) {
|
||||||
|
toastr.info('Your web browser does not support easy clipboard copying. Copy it manually instead.');
|
||||||
|
};
|
||||||
|
|
||||||
|
$scope.clipboardSuccess = function (e, type) {
|
||||||
|
e.clearSelection();
|
||||||
|
toastr.info(type + ' copied!');
|
||||||
|
};
|
||||||
|
|
||||||
$scope.addSite = function () {
|
$scope.addSite = function () {
|
||||||
$state.go('addSite', {
|
$state.go('addSite', {
|
||||||
animation: 'in-slide-up',
|
animation: 'in-slide-up',
|
||||||
|
|
Loading…
Reference in New Issue