Browse Source

Move local frontend lib assets from dist to lib directory

Signed-off-by: Eric Zhao <sczyh16@gmail.com>
master
Eric Zhao 6 years ago
parent
commit
c7c59e9de7
12 changed files with 9 additions and 9 deletions
  1. +9
    -9
      sentinel-dashboard/src/main/webapp/resources/index.htm
  2. +0
    -0
      sentinel-dashboard/src/main/webapp/resources/lib/css/bootstrap.min.css
  3. +0
    -0
      sentinel-dashboard/src/main/webapp/resources/lib/css/font-awesome.min.css
  4. +0
    -0
      sentinel-dashboard/src/main/webapp/resources/lib/fonts/fontawesome-webfont.ttf
  5. +0
    -0
      sentinel-dashboard/src/main/webapp/resources/lib/fonts/fontawesome-webfont.woff
  6. +0
    -0
      sentinel-dashboard/src/main/webapp/resources/lib/fonts/fontawesome-webfont.woff2
  7. +0
    -0
      sentinel-dashboard/src/main/webapp/resources/lib/fonts/glyphicons-halflings-regular.ttf
  8. +0
    -0
      sentinel-dashboard/src/main/webapp/resources/lib/fonts/glyphicons-halflings-regular.woff
  9. +0
    -0
      sentinel-dashboard/src/main/webapp/resources/lib/js/angular.min.js
  10. +0
    -0
      sentinel-dashboard/src/main/webapp/resources/lib/js/bootstrap.min.js
  11. +0
    -0
      sentinel-dashboard/src/main/webapp/resources/lib/js/g2.min.js
  12. +0
    -0
      sentinel-dashboard/src/main/webapp/resources/lib/js/jquery.min.js

+ 9
- 9
sentinel-dashboard/src/main/webapp/resources/index.htm View File

@@ -7,22 +7,22 @@
<meta name="description" content="Sentinel 控制台,Sentinel Dashboard,Admin">
<meta name="viewport" content="width=device-width">

<link rel="stylesheet" href="./dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="./dist/css/font-awesome.min.css">
<link rel="stylesheet" href="dist/css/app.css">
<link rel="stylesheet" href="./lib/css/bootstrap.min.css" />
<link rel="stylesheet" href="./lib/css/font-awesome.min.css">
<link rel="stylesheet" href="./dist/css/app.css">
</head>

<body>
<div ng-app="sentinelDashboardApp">
<div ui-view></div>
</div>
<script src="./dist/js/jquery.min.js"></script>
<script src="./dist/js/bootstrap.min.js"></script>
<script src="./dist/js/angular.min.js"></script>
<script src="./dist/js/g2.min.js"></script>
<script src="./lib/js/jquery.min.js"></script>
<script src="./lib/js/bootstrap.min.js"></script>
<script src="./lib/js/angular.min.js"></script>
<script src="./lib/js/g2.min.js"></script>

<script src="dist/js/app.vendor.js"></script>
<script src="dist/js/app.js"></script>
<script src="./dist/js/app.vendor.js"></script>
<script src="./dist/js/app.js"></script>
</body>

</html>

sentinel-dashboard/src/main/webapp/resources/dist/css/bootstrap.min.css → sentinel-dashboard/src/main/webapp/resources/lib/css/bootstrap.min.css View File


sentinel-dashboard/src/main/webapp/resources/dist/css/font-awesome.min.css → sentinel-dashboard/src/main/webapp/resources/lib/css/font-awesome.min.css View File


sentinel-dashboard/src/main/webapp/resources/dist/fonts/fontawesome-webfont.ttf → sentinel-dashboard/src/main/webapp/resources/lib/fonts/fontawesome-webfont.ttf View File


sentinel-dashboard/src/main/webapp/resources/dist/fonts/fontawesome-webfont.woff → sentinel-dashboard/src/main/webapp/resources/lib/fonts/fontawesome-webfont.woff View File


sentinel-dashboard/src/main/webapp/resources/dist/fonts/fontawesome-webfont.woff2 → sentinel-dashboard/src/main/webapp/resources/lib/fonts/fontawesome-webfont.woff2 View File


sentinel-dashboard/src/main/webapp/resources/dist/fonts/glyphicons-halflings-regular.ttf → sentinel-dashboard/src/main/webapp/resources/lib/fonts/glyphicons-halflings-regular.ttf View File


sentinel-dashboard/src/main/webapp/resources/dist/fonts/glyphicons-halflings-regular.woff → sentinel-dashboard/src/main/webapp/resources/lib/fonts/glyphicons-halflings-regular.woff View File


sentinel-dashboard/src/main/webapp/resources/dist/js/angular.min.js → sentinel-dashboard/src/main/webapp/resources/lib/js/angular.min.js View File


sentinel-dashboard/src/main/webapp/resources/dist/js/bootstrap.min.js → sentinel-dashboard/src/main/webapp/resources/lib/js/bootstrap.min.js View File


sentinel-dashboard/src/main/webapp/resources/dist/js/g2.min.js → sentinel-dashboard/src/main/webapp/resources/lib/js/g2.min.js View File


sentinel-dashboard/src/main/webapp/resources/dist/js/jquery.min.js → sentinel-dashboard/src/main/webapp/resources/lib/js/jquery.min.js View File


Loading…
Cancel
Save