-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
34 lines (27 loc) · 1.37 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!doctype html>
<html ng-app="app">
<head>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.3/angular.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.3/angular-touch.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.3/angular-animate.js"></script>
<link rel="stylesheet" href="https://cdn.rawgit.com/esvit/ng-table/1.0.0/dist/ng-table.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<script src="https://cdn.rawgit.com/esvit/ng-table/1.0.0/dist/ng-table.js"></script>
</head>
<body ng-controller="ResourcesController as controller">
<div>
<p>
VX Ace: <a href="#" ng-click="show('vxa', 'scripts')">Scripts</a> /
<a href="#" ng-click="show('vxa', 'graphics')">Resources</a> ::
MV: <a href="#" ng-click="show('mv', 'scripts')">Scripts</a> /
<a href="#" ng-click="show('mv', 'graphics')">Resources</a> ::
View on <a href="http://github.com/ashes999/rpg-maker-resources">GitHub</a>
</p>
</div>
<rpg-resources-table id="scriptsTable-vxa" />
<rpg-resources-table id="graphicsTable-vxa" />
<rpg-resources-table id="scriptsTable-mv" />
<rpg-resources-table id="graphicsTable-mv" />
<script src="app.js"></script>
</body>
</html>