diff options
author | 0ip <me@factor.cc> | 2013-02-09 20:34:12 +0100 |
---|---|---|
committer | 0ip <me@factor.cc> | 2013-02-09 20:34:12 +0100 |
commit | 52ff28dea03a342c13d408d1c588ccdc38b56b68 (patch) | |
tree | efa6b635555f7d8080415ebdfb1c5588ea23d54c /src/templates | |
parent | d2409288be75b3027de3210be92dc8e5f0c52ef1 (diff) | |
download | etherpad-lite-52ff28dea03a342c13d408d1c588ccdc38b56b68.zip |
Fix data attribute
Diffstat (limited to 'src/templates')
-rw-r--r-- | src/templates/admin/plugins.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/templates/admin/plugins.html b/src/templates/admin/plugins.html index 92ec0a16..51cebafb 100644 --- a/src/templates/admin/plugins.html +++ b/src/templates/admin/plugins.html @@ -43,9 +43,9 @@ </thead>
<tbody class="template">
<tr id="installed-plugin-template">
- <td class="name" data-title="Name"></td>
- <td class="description" data-title="Description"></td>
- <td class="version" data-title="Version"></td>
+ <td class="name" data-label="Name"></td>
+ <td class="description" data-label="Description"></td>
+ <td class="version" data-label="Version"></td>
<td class="actions">
<input type="button" value="Uninstall" class="do-uninstall">
</td>
@@ -74,9 +74,9 @@ </thead>
<tbody class="template">
<tr>
- <td class="name" data-title="Name"></td>
- <td class="description" data-title="Description"></td>
- <td class="version" data-title="Version"></td>
+ <td class="name" data-label="Name"></td>
+ <td class="description" data-label="Description"></td>
+ <td class="version" data-label="Version"></td>
<td class="actions">
<input type="button" value="Install" class="do-install">
</td>
|