This commit is contained in:
Kelsey Rangel 2015-10-30 16:03:07 -07:00
Родитель fa2b5fefd0
Коммит e5761a871c
2 изменённых файлов: 4 добавлений и 5 удалений

Просмотреть файл

@ -1,5 +1,5 @@
@using GlobalResources
@helper TextCopy(string idPrefix, string classname, string content, string class_styles_modifier, string button_style_modifier = "")
@helper TextCopy(string idPrefix, string classname, string content, string class_styles_modifier = "", string button_style_modifier = "")
{
var uniqueId = string.Format("{0}_{1}", idPrefix, Guid.NewGuid());

Просмотреть файл

@ -13,7 +13,6 @@ else
@{
string classname = "text_copy_container__input--add_device_copy_table";
string class_styles_modifier = "";
<table class="table_credentials">
<tbody>
@ -22,7 +21,7 @@ else
@Strings.DeviceIdColon
</td>
<td class="table_credentials__value">
@IoTHelpers.TextCopy("DeviceId", classname, @Model.DeviceId, class_styles_modifier)
@IoTHelpers.TextCopy("DeviceId", classname, @Model.DeviceId)
</td>
</tr>
<tr>
@ -30,7 +29,7 @@ else
@Strings.AzureDevicesHostnameColon
</td>
<td class="table_credentials__value">
@IoTHelpers.TextCopy("AzureDevicesHostname", classname, @Model.HostName, class_styles_modifier)
@IoTHelpers.TextCopy("AzureDevicesHostname", classname, @Model.HostName)
</td>
</tr>
<tr>
@ -38,7 +37,7 @@ else
@Strings.DeviceKeyColon
</td>
<td class="table_credentials__value">
@IoTHelpers.TextCopy("PrimaryKey", classname, @Model.PrimaryKey, class_styles_modifier)
@IoTHelpers.TextCopy("PrimaryKey", classname, @Model.PrimaryKey)
</td>
</tr>
</tbody>