Skip to content

Commit 4f193ad

Browse files
committed
Bower configuration and base html template
1 parent e03faa4 commit 4f193ad

File tree

4 files changed

+56
-6
lines changed

4 files changed

+56
-6
lines changed

src/main/resources/webapp/.bowerrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"directory": "bower_components"
3+
}

src/main/resources/webapp/Index.html

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,27 @@
1-
<!DOCTYPE html>
2-
<html>
1+
<!doctype html>
2+
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
3+
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
4+
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
5+
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
36
<head>
4-
<title></title>
7+
<meta charset="utf-8">
8+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
9+
<title>RealityQuest</title>
10+
<meta name="viewport" content="width=device-width">
511
</head>
6-
<body>
7-
Reality Quest
8-
</body>
12+
<body ng-app="app">
13+
<!--[if lt IE 7]>
14+
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
15+
<![endif]-->
16+
17+
<!--[if lt IE 9]>
18+
<script src="libs/es5-shim-2.3.0.min.js"></script>
19+
<script src="libs/json3-3.2.6.min.js"></script>
20+
<script src="libs/jquery-1.10.2.min.js"></script>
21+
<![endif]-->
22+
23+
<div toaster-container toaster-options="{'time-out': 3000, 'position-class': 'toast-bottom-right', 'newest-on-top': false}"></div>
24+
25+
<div class="container" ui-view=""></div>
26+
</body>
927
</html>

src/main/resources/webapp/bower.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "RealityQuest",
3+
"dependencies": {
4+
"angular": "1.2.7",
5+
"angular-ui-router": "0.2.7",
6+
"angular-animate": "1.2.7",
7+
"AngularJS-Toaster": "0.4.1",
8+
"angular-loading-bar": "0.2.0",
9+
"json3": "3.2.6",
10+
"es5-shim": "2.3.0",
11+
"jquery": "1.10.2",
12+
"lodash": "2.4.1",
13+
"d3": "3.3.13",
14+
"nvd3": "1.1.15-beta",
15+
"angularjs-nvd3-directives": "0.0.5-beta"
16+
},
17+
"resolutions": {
18+
"angular": "1.2.7",
19+
"jquery": "1.10.2",
20+
"d3": "3.3.13",
21+
"nvd3": "1.1.15-beta"
22+
}
23+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"name": "RealityQuest",
3+
"version": "0.0.0",
4+
"description": "",
5+
"author": "Răzvan Panda"
6+
}

0 commit comments

Comments
 (0)