Skip to content

Commit 0b828ac

Browse files
committed
Fix UI icons
1 parent 3476688 commit 0b828ac

File tree

5 files changed

+7
-19
lines changed

5 files changed

+7
-19
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ bower_components
88
node_modules
99
npm-debug.log
1010
.idea/
11-
.DS_Store
11+
.DS_Store
12+
ui/package-lock.json

ui/app/bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
"html5-boilerplate": "^5.3.0",
1515
"underscore": "1.8.3",
1616
"papaparse": "4.1.2",
17-
"bootstrap": "^3.3.7"
17+
"bootswatch-dist": "superhero"
1818
}
1919
}

ui/app/css/bootstrap-superhero.min.css

-11
This file was deleted.

ui/app/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<meta name="description" content="">
1111

1212
<script src="bower_components/html5-boilerplate/dist/js/vendor/modernizr-2.8.3.min.js"></script>
13-
<link rel="stylesheet" type="text/css" href="css/bootstrap-superhero.min.css">
13+
<link rel="stylesheet" type="text/css" href="bower_components/bootswatch-dist/css/bootstrap.min.css">
1414
</head>
1515
<body>
1616
<!--[if lt IE 7]>

ui/package.json

+3-5
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,18 @@
1818
},
1919
"scripts": {
2020
"postinstall": "cd app && bower install",
21-
2221
"prestart": "npm install",
2322
"start": "http-server -a localhost -p 8000 -c-1 ./app",
24-
2523
"pretest": "npm install",
2624
"test": "karma start karma.conf.js",
2725
"test-single-run": "karma start karma.conf.js --single-run",
28-
2926
"preupdate-webdriver": "npm install",
3027
"update-webdriver": "webdriver-manager update",
31-
3228
"preprotractor": "npm run update-webdriver",
3329
"protractor": "protractor e2e-tests/protractor.conf.js",
34-
3530
"update-index-async": "node -e \"var fs=require('fs'),indexFile='app/index-async.html',loaderFile='app/bower_components/angular-loader/angular-loader.min.js',loaderText=fs.readFileSync(loaderFile,'utf-8').split(/sourceMappingURL=angular-loader.min.js.map/).join('sourceMappingURL=bower_components/angular-loader/angular-loader.min.js.map'),indexText=fs.readFileSync(indexFile,'utf-8').split(/\\/\\/@@NG_LOADER_START@@[\\s\\S]*\\/\\/@@NG_LOADER_END@@/).join('//@@NG_LOADER_START@@\\n'+loaderText+' //@@NG_LOADER_END@@');fs.writeFileSync(indexFile,indexText);\""
31+
},
32+
"dependencies": {
33+
"npm": "^6.0.0"
3634
}
3735
}

0 commit comments

Comments
 (0)