GUAC-1052: Explicitly close custom tags.

This commit is contained in:
Michael Jumper
2015-02-08 11:42:11 -08:00
parent 7b32adad97
commit f77b763ef8
5 changed files with 7 additions and 7 deletions

View File

@@ -29,7 +29,7 @@
<div class="client-body" guac-touch-drag="clientDrag" guac-touch-pinch="clientPinch"> <div class="client-body" guac-touch-drag="clientDrag" guac-touch-pinch="clientPinch">
<!-- Client --> <!-- Client -->
<guac-client client="client"/></guac-client> <guac-client client="client"></guac-client>
</div> </div>

View File

@@ -30,7 +30,7 @@
<!-- Connection thumbnail --> <!-- Connection thumbnail -->
<div class="thumbnail"> <div class="thumbnail">
<guac-thumbnail client="activeConnection.client"/></guac-thumbnail> <guac-thumbnail client="activeConnection.client"></guac-thumbnail>
</div> </div>
<!-- Connection name --> <!-- Connection name -->

View File

@@ -32,7 +32,7 @@
<!-- The recent connections for this user --> <!-- The recent connections for this user -->
<h2>{{'HOME.SECTION_HEADER_RECENT_CONNECTIONS' | translate}}</h2> <h2>{{'HOME.SECTION_HEADER_RECENT_CONNECTIONS' | translate}}</h2>
<div class="recent-connections"> <div class="recent-connections">
<guac-recent-connections root-group="rootConnectionGroup"/> <guac-recent-connections root-group="rootConnectionGroup"></guac-recent-connections>
</div> </div>
<!-- All connections for this user --> <!-- All connections for this user -->
@@ -41,7 +41,7 @@
<guac-group-list <guac-group-list
connection-group="rootConnectionGroup" connection-group="rootConnectionGroup"
connection-template="'app/home/templates/connection.html'" connection-template="'app/home/templates/connection.html'"
connection-group-template="'app/home/templates/connectionGroup.html'"/> connection-group-template="'app/home/templates/connectionGroup.html'"></guac-group-list>
</div> </div>
</div> </div>

View File

@@ -68,7 +68,7 @@ THE SOFTWARE.
<tr ng-repeat="parameter in protocols[connection.protocol].parameters"> <tr ng-repeat="parameter in protocols[connection.protocol].parameters">
<th>{{getProtocolParameterName(connection.protocol, parameter.name) | translate}}</th> <th>{{getProtocolParameterName(connection.protocol, parameter.name) | translate}}</th>
<td> <td>
<guac-connection-parameter protocol="protocols[connection.protocol]" name="parameter.name" parameters="parameters"/> <guac-connection-parameter protocol="protocols[connection.protocol]" name="parameter.name" parameters="parameters"></guac-connection-parameter>
</td> </td>
</tr> </tr>
</table> </table>

View File

@@ -37,7 +37,7 @@ THE SOFTWARE.
<!-- Global status/error dialog --> <!-- Global status/error dialog -->
<div ng-class="{shown: status}" class="status-outer"> <div ng-class="{shown: status}" class="status-outer">
<div class="status-middle"> <div class="status-middle">
<guac-notification notification="status"/> <guac-notification notification="status"></guac-notification>
</div> </div>
</div> </div>
@@ -47,7 +47,7 @@ THE SOFTWARE.
<!-- Notification area --> <!-- Notification area -->
<div id="notificationArea"> <div id="notificationArea">
<div ng-repeat="wrapper in notifications"> <div ng-repeat="wrapper in notifications">
<guac-notification notification="wrapper.notification"/> <guac-notification notification="wrapper.notification"></guac-notification>
</div> </div>
</div> </div>