mirror of
https://github.com/VinylDNS/vinyldns
synced 2025-08-31 14:25:30 +00:00
update text
This commit is contained in:
@@ -43,7 +43,7 @@
|
|||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<p><strong>ID:</strong> {{batch.id}}
|
<p><strong>ID:</strong> {{batch.id}}
|
||||||
<span class="small-copy-button" ng-click="copyToClipboard()"
|
<span class="small-copy-button" ng-click="copyToClipboard()"
|
||||||
data-toggle="tooltip" data-placement="top" title="Copy batch id to clipboard">
|
data-toggle="tooltip" data-placement="top" title="Copy Batch ID to clipboard">
|
||||||
<i class="fa fa-clone"></i>
|
<i class="fa fa-clone"></i>
|
||||||
</span>
|
</span>
|
||||||
<button class="btn-right-corner" ng-click="exportToCSV(batch.id)">Export CSV</button>
|
<button class="btn-right-corner" ng-click="exportToCSV(batch.id)">Export CSV</button>
|
||||||
|
@@ -114,7 +114,7 @@
|
|||||||
<td>
|
<td>
|
||||||
<a href="/dnschanges/{{batchChange.id}}">{{batchChange.id}}</a>
|
<a href="/dnschanges/{{batchChange.id}}">{{batchChange.id}}</a>
|
||||||
<span class="small-copy-button" ng-click="copyToClipboard(batchChange.id)"
|
<span class="small-copy-button" ng-click="copyToClipboard(batchChange.id)"
|
||||||
data-toggle="tooltip" data-placement="top" title="Copy batch id to clipboard">
|
data-toggle="tooltip" data-placement="top" title="Copy Batch ID to clipboard">
|
||||||
<i class="fa fa-clone"></i>
|
<i class="fa fa-clone"></i>
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
|
@@ -34,7 +34,7 @@
|
|||||||
</h3>
|
</h3>
|
||||||
<p><strong>Group ID:</strong> {{membership.group.id}}
|
<p><strong>Group ID:</strong> {{membership.group.id}}
|
||||||
<span class="small-copy-button" ng-click="copyToClipboard()"
|
<span class="small-copy-button" ng-click="copyToClipboard()"
|
||||||
data-toggle="tooltip" data-placement="top" title="Copy group id to clipboard">
|
data-toggle="tooltip" data-placement="top" title="Copy Group ID to clipboard">
|
||||||
<i class="fa fa-clone"></i>
|
<i class="fa fa-clone"></i>
|
||||||
</span>
|
</span>
|
||||||
</p>
|
</p>
|
||||||
|
@@ -34,7 +34,7 @@
|
|||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<p><strong>Zone ID:</strong> {{zoneInfo.id}}
|
<p><strong>Zone ID:</strong> {{zoneInfo.id}}
|
||||||
<span class="small-copy-button" ng-click="copyToClipboard()"
|
<span class="small-copy-button" ng-click="copyToClipboard()"
|
||||||
data-toggle="tooltip" data-placement="top" title="Copy zone id to clipboard">
|
data-toggle="tooltip" data-placement="top" title="Copy Zone ID to clipboard">
|
||||||
<i class="fa fa-clone"></i>
|
<i class="fa fa-clone"></i>
|
||||||
</span>
|
</span>
|
||||||
</p>
|
</p>
|
||||||
|
@@ -50,7 +50,7 @@ angular.module('controller.membership', []).controller('MembershipController', f
|
|||||||
$scope.copyToClipboard = function() {
|
$scope.copyToClipboard = function() {
|
||||||
utilityService.copyToClipboard($scope.membership.group.id);
|
utilityService.copyToClipboard($scope.membership.group.id);
|
||||||
// Trigger success alert using utilityService
|
// Trigger success alert using utilityService
|
||||||
var alert = utilityService.success('Successfully copied group id to clipboard');
|
var alert = utilityService.success('Successfully copied Group ID to clipboard');
|
||||||
$scope.alerts.push(alert);
|
$scope.alerts.push(alert);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -108,7 +108,7 @@ angular.module('controller.records', [])
|
|||||||
$scope.copyToClipboard = function() {
|
$scope.copyToClipboard = function() {
|
||||||
utilityService.copyToClipboard($scope.zoneInfo.id);
|
utilityService.copyToClipboard($scope.zoneInfo.id);
|
||||||
// Trigger success alert using utilityService
|
// Trigger success alert using utilityService
|
||||||
var alert = utilityService.success('Successfully copied zone id to clipboard');
|
var alert = utilityService.success('Successfully copied Zone ID to clipboard');
|
||||||
$scope.alerts.push(alert);
|
$scope.alerts.push(alert);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -35,7 +35,7 @@
|
|||||||
$scope.copyToClipboard = function() {
|
$scope.copyToClipboard = function() {
|
||||||
utilityService.copyToClipboard($scope.batch.id);
|
utilityService.copyToClipboard($scope.batch.id);
|
||||||
// Trigger success alert using utilityService
|
// Trigger success alert using utilityService
|
||||||
var alert = utilityService.success('Successfully copied batch id to clipboard');
|
var alert = utilityService.success('Successfully copied Batch ID to clipboard');
|
||||||
$scope.alerts.push(alert);
|
$scope.alerts.push(alert);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -59,7 +59,7 @@
|
|||||||
$scope.copyToClipboard = function(copyText) {
|
$scope.copyToClipboard = function(copyText) {
|
||||||
utilityService.copyToClipboard(copyText);
|
utilityService.copyToClipboard(copyText);
|
||||||
// Trigger success alert using utilityService
|
// Trigger success alert using utilityService
|
||||||
var alert = utilityService.success('Successfully copied batch id to clipboard');
|
var alert = utilityService.success('Successfully copied Batch ID to clipboard');
|
||||||
$scope.alerts.push(alert);
|
$scope.alerts.push(alert);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user