From 2563576f86f75c1dcbc98f0604661c1addcf90cc Mon Sep 17 00:00:00 2001 From: Will Marshall Date: Thu, 8 May 2014 12:26:37 +1000 Subject: [PATCH] Adding a class to the login modal --- .../darkswarm/services/authentication_service.js.coffee | 1 + 1 file changed, 1 insertion(+) diff --git a/app/assets/javascripts/darkswarm/services/authentication_service.js.coffee b/app/assets/javascripts/darkswarm/services/authentication_service.js.coffee index 44a0819b7a..dedea5e312 100644 --- a/app/assets/javascripts/darkswarm/services/authentication_service.js.coffee +++ b/app/assets/javascripts/darkswarm/services/authentication_service.js.coffee @@ -9,6 +9,7 @@ Darkswarm.factory "AuthenticationService", (Navigation, $modal, $location)-> open: (path = false)=> @modalInstance = $modal.open templateUrl: 'authentication.html' + windowClass: "login-modal" @modalInstance.result.then @close, @close @selectedPath = path || @selectedPath Navigation.navigate @selectedPath