1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-05 10:39:25 +02:00

Fairly overkill AngularJS + RequireJS UI for the mock login screen.

This commit is contained in:
Simo Kinnunen 2014-01-24 22:53:51 +09:00
parent 24825ff7fc
commit 2b46ff41d3
13 changed files with 178 additions and 3 deletions

11
app/auth/scripts/bootstrap.js vendored Normal file
View file

@ -0,0 +1,11 @@
define([
'require'
, 'angular'
, 'angular-route'
, 'app'
, 'routes'
]
, function(require, ng) {
ng.bootstrap(document, ['app'])
}
)