Skip to content
This repository has been archived by the owner on Mar 6, 2019. It is now read-only.

Commit

Permalink
We now use bower for dependency management.
Browse files Browse the repository at this point in the history
  • Loading branch information
null-dev committed Jul 27, 2016
1 parent 95ee9be commit 911cfc4
Show file tree
Hide file tree
Showing 14 changed files with 51 additions and 12,585 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/.idea/workspace.xml
/bower_components/
25 changes: 25 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "tachiweb-ui",
"homepage": "https://github.com/TachiWeb/TachiWeb",
"authors": [
"nulldev <[email protected]>"
],
"description": "A HTML frontend for TachiWeb-Server.",
"license": "MIT",
"private": true,
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests",
".idea"
],
"dependencies": {
"jquery": "^3.1.0",
"material-design-lite": "^1.1.3",
"moment": "^2.14.1",
"mdl-selectfield": "^1.0.2",
"dialog-polyfill": "^0.4.3"
}
}
16 changes: 8 additions & 8 deletions catalogue.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@

<head>
<!-- JQuery -->
<script src="js/jquery-3.0.0.min.js"></script>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<!-- Material Lite -->
<link href="css/material.min.css" rel="stylesheet">
<script src="js/material.min.js"></script>
<link href="bower_components/material-design-lite/material.min.css" rel="stylesheet">
<script src="bower_components/material-design-lite/material.min.js"></script>
<!-- Material SelectField -->
<link href="css/mdl-selectfield.min.css" rel="stylesheet">
<script src="js/mdl-selectfield.min.js"></script>
<link href="bower_components/mdl-selectfield/dist/mdl-selectfield.min.css" rel="stylesheet">
<script src="bower_components/mdl-selectfield/dist/mdl-selectfield.min.js"></script>
<!-- Dialog Polyfill -->
<script src="bower_components/dialog-polyfill/dialog-polyfill.js"></script>
<link href="bower_components/dialog-polyfill/dialog-polyfill.css" rel="stylesheet">
<!-- Material Fonts -->
<link href="css/material_fonts.css" rel="stylesheet">
<!-- Dialog Polyfill -->
<script src="js/dialog-polyfill.js"></script>
<link href="css/dialog-polyfill.css" rel="stylesheet">
<!-- Core -->
<link href="css/core.css" rel="stylesheet">
<script src="js/core.js"></script>
Expand Down
46 changes: 0 additions & 46 deletions css/dialog-polyfill.css

This file was deleted.

8 changes: 0 additions & 8 deletions css/material.min.css

This file was deleted.

3 changes: 0 additions & 3 deletions css/mdl-selectfield.min.css

This file was deleted.

6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

<head>
<!-- JQuery -->
<script src="js/jquery-3.0.0.min.js"></script>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<!-- Material Lite -->
<link href="css/material.min.css" rel="stylesheet">
<script src="js/material.min.js"></script>
<link href="bower_components/material-design-lite/material.min.css" rel="stylesheet">
<script src="bower_components/material-design-lite/material.min.js"></script>
<!-- Material Fonts -->
<link href="css/material_fonts.css" rel="stylesheet">
<!-- Core -->
Expand Down
Loading

0 comments on commit 911cfc4

Please sign in to comment.