Skip to content

Commit

Permalink
change tooltip icon. rockstor#697
Browse files Browse the repository at this point in the history
  • Loading branch information
schakrava committed Jul 5, 2015
1 parent 9150b18 commit 0cb1cd2
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<div class="col-sm-6">
<input class="form-control" type="text" id="<%= cci.id %>" name="<%= cci.id %>" value="<%= cci.get('val')%>">
</div>
&nbsp;&nbsp<i class="fa fa-exclamation-circle" title="<%= cci.get('description') %>" rel="tooltip"></i>
&nbsp;&nbsp<i class="fa fa-info-circle fa-lg" title="<%= cci.get('description') %>" rel="tooltip"></i>
</div>
</div>
<% }); %>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<div class="col-sm-5">
<input class="form-control" type="text" id="<%= port.id %>" name="<%= port.id %>" value="<%= port.get('hostp')%>">
</div>
<i class="fa fa-exclamation-circle" title="<%= port.get('description') %>"></i>
<i class="fa fa-info-circle fa-lg" title="<%= port.get('description') %>"></i>
</div>
<% }); %>
</form>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<table class="table table-condensed table-bordered table-hover table-striped tablesorter">
<thead>
<tr>
<th>Resource type&nbsp;&nbsp<i class="fa fa-exclamation-circle" title="Type of the system resource on Rockstor. Eg: Share, port numbers etc.. Custom type is for arbitrary variables needed by the Rock-on that may not map to a system resource." rel="tooltip"></i></th>
<th>Name&nbsp;&nbsp<i class="fa fa-exclamation-circle" title="Name of the resource according to Rockstor. Eg: Share names, port numbers etc.." rel="tooltip"></i></th>
<th>Mapped representation&nbsp;&nbsp<i class="fa fa-exclamation-circle" title="Name/representation of the resource inside the Rock-on. Eg: Shares map to directories, ports map to (possibly different)ports to send traffic to the Rock-on, etc.." rel="tooltip"></i></th>
<th>Resource type&nbsp;&nbsp<i class="fa fa-info-circle fa-lg" title="Type of the system resource on Rockstor. Eg: Share, port numbers etc.. Custom type is for arbitrary variables needed by the Rock-on that may not map to a system resource." rel="tooltip"></i></th>
<th>Name&nbsp;&nbsp<i class="fa fa-info-circle fa-lg" title="Name of the resource according to Rockstor. Eg: Share names, port numbers etc.." rel="tooltip"></i></th>
<th>Mapped representation&nbsp;&nbsp<i class="fa fa-info-circle fa-lg" title="Name/representation of the resource inside the Rock-on. Eg: Shares map to directories, ports map to (possibly different)ports to send traffic to the Rock-on, etc.." rel="tooltip"></i></th>
</tr>
</thead>

Expand Down Expand Up @@ -35,7 +35,7 @@
<% cc.each(function(cci, index) { %>
<tr>
<td>Custom</td>
<td><%= cci.get('val') %>&nbsp;&nbsp<i class="fa fa-exclamation-circle" title="<%= cci.get('description') %>" rel="tooltip"></i></td>
<td><%= cci.get('val') %>&nbsp;&nbsp<i class="fa fa-info-circle" title="<%= cci.get('description') %>" rel="tooltip"></i></td>
<td><%= cci.get('key') %></td>
</tr>
<% }); %>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<table class="table table-condensed table-bordered table-hover table-striped tablesorter">
<thead>
<tr>
<th>Resource type&nbsp;&nbsp<i class="fa fa-exclamation-circle" title="Type of the system resource on Rockstor. Eg: Share, port numbers etc.. Custom type is for arbitrary variables needed by the Rock-on that may not map to a system resource." rel="tooltip"></i></th>
<th>Name&nbsp;&nbsp<i class="fa fa-exclamation-circle" title="Name of the resource according to Rockstor. Eg: Share names, port numbers etc.." rel="tooltip"></i></th>
<th>Mapped representation&nbsp;&nbsp<i class="fa fa-exclamation-circle" title="Name/representation of the resource inside the Rock-on. Eg: Shares map to directories, ports map to (possibly different)ports to send traffic to the Rock-on, etc.." rel="tooltip"></i></th>
<th>Resource type&nbsp;&nbsp<i class="fa fa-info-circle fa-lg" title="Type of the system resource on Rockstor. Eg: Share, port numbers etc.. Custom type is for arbitrary variables needed by the Rock-on that may not map to a system resource." rel="tooltip"></i></th>
<th>Name&nbsp;&nbsp<i class="fa fa-info-circle fa-lg" title="Name of the resource according to Rockstor. Eg: Share names, port numbers etc.." rel="tooltip"></i></th>
<th>Mapped representation&nbsp;&nbsp<i class="fa fa-info-circle fa-lg" title="Name/representation of the resource inside the Rock-on. Eg: Shares map to directories, ports map to (possibly different)ports to send traffic to the Rock-on, etc.." rel="tooltip"></i></th>
</tr>
</thead>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@
<% }); %>
</select>
</div>
<i class="fa fa-exclamation-circle" title="<%= volume.get('description') %>"></i>
<i class="fa fa-info-circle fa-lg" title="<%= volume.get('description') %>"></i>
</div>
<% }); %>
</form>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ RockonsView = RockstorLayoutView.extend({
},

render: function() {
this.rockons.fetch();
this.service.fetch();
this.rockons.fetch();
this.updateStatus();

return this;
Expand Down

0 comments on commit 0cb1cd2

Please sign in to comment.