GUAC-1376: Add reconnect button style.

This commit is contained in:
Michael Jumper
2015-11-02 13:35:09 -08:00
parent 835cb21315
commit f708e4b204
3 changed files with 20 additions and 22 deletions

View File

@@ -170,8 +170,9 @@ angular.module('client').controller('clientController', ['$scope', '$routeParams
* Action which replaces the current client with a newly-connected client.
*/
var RECONNECT_ACTION = {
name : "CLIENT.ACTION_RECONNECT",
callback : function reconnectCallback() {
name : "CLIENT.ACTION_RECONNECT",
className : "reconnect button",
callback : function reconnectCallback() {
$scope.client = guacClientManager.replaceManagedClient($routeParams.id, $routeParams.params);
guacNotification.showStatus(false);
}