mirror of https://github.com/apache/archiva.git
add title in th element and use twipsy
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1231897 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
524f562cc1
commit
4964f03885
|
@ -62,6 +62,7 @@
|
|||
.script("bootstrap-modal.js").wait()
|
||||
.script("bootstrap-alerts.js").wait()
|
||||
.script("bootstrap-dropdown.js").wait()
|
||||
.script("bootstrap-twipsy.js").wait()
|
||||
.script("knockout.simpleGrid.js").wait()
|
||||
.script("knockout.mapping-latest.debug.js").wait()
|
||||
.script("redback/user.js").wait()
|
||||
|
|
|
@ -110,7 +110,8 @@ $(function() {
|
|||
},
|
||||
{
|
||||
headerText: $.i18n.prop('type'),
|
||||
rowText: "layout"
|
||||
rowText: "layout",
|
||||
title: "Repository type (default is Maven 2)"
|
||||
}
|
||||
],
|
||||
pageSize: 10
|
||||
|
@ -119,7 +120,7 @@ $(function() {
|
|||
$("#main-content #managed-repositories-pills").pills();
|
||||
$("#managed-repositories-view").addClass("active");
|
||||
removeMediumSpinnerImg("#main-content #managed-repositories-content");
|
||||
$.log("ok display managedRepositories");
|
||||
$("#main-content #managed-repositories-table [title]").twipsy();
|
||||
}
|
||||
}
|
||||
);
|
||||
|
|
|
@ -61,7 +61,7 @@
|
|||
<thead>
|
||||
<tr>
|
||||
{{each(i, columnDefinition) columns}}
|
||||
<th>${ columnDefinition.headerText }</th>
|
||||
<th title="${ columnDefinition.title }">${ columnDefinition.headerText }</th>
|
||||
{{/each}}
|
||||
<th>${$.i18n.prop('release.included')}</th>
|
||||
<th>${$.i18n.prop('snapshots.included')}</th>
|
||||
|
@ -90,7 +90,6 @@
|
|||
<img src="images/dialog-error.png"/>
|
||||
{{/if}}
|
||||
</td>
|
||||
|
||||
<td><a href="#" data-bind="click: function(){ editManagedRepository(row) }">Edit</a></td>
|
||||
</tr>
|
||||
{{/each}}
|
||||
|
|
Loading…
Reference in New Issue