Skip to content

Commit d53b627

Browse files
authored
Merge pull request #112 from gary-kim/enh/103/missing-indicator
Add Missing Indicator on the Main Page and Classes for Course and Assignment
2 parents 30c0d96 + 86d2116 commit d53b627

File tree

11 files changed

+630
-68
lines changed

11 files changed

+630
-68
lines changed

.babelrc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
{
2-
"presets": ["@babel/preset-env"]
2+
"presets": ["@babel/preset-env"],
3+
"plugins": [
4+
["@babel/plugin-proposal-class-properties", {"loose": true}],
5+
["@babel/plugin-transform-runtime", {"regenerator": true}]
6+
]
37
}

package-lock.json

Lines changed: 161 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@
3232
"homepage": "https://github.com/gary-kim/saspes#readme",
3333
"devDependencies": {
3434
"@babel/core": "^7.8.6",
35+
"@babel/plugin-proposal-class-properties": "^7.8.3",
36+
"@babel/plugin-transform-runtime": "^7.8.3",
3537
"@babel/register": "^7.8.6",
3638
"ava": "^3.3.0",
3739
"babel-loader": "^8.0.6",
@@ -63,10 +65,12 @@
6365
},
6466
"dependencies": {
6567
"@babel/preset-env": "^7.8.6",
68+
"@babel/runtime": "^7.8.4",
6669
"babel-eslint": "^10.0.3",
6770
"get-in-range": "^0.2.4",
6871
"get-key-range": "^1.0.1",
69-
"jquery": "^3.4.1"
72+
"jquery": "^3.4.1",
73+
"v-tooltip": "^2.0.3"
7074
},
7175
"webExt": {
7276
"sourceDir": "dist",

src/css/spse.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
.tooltip.saspes {
1818
cursor: default;
1919
position: relative;
20-
display: inline-block;
20+
display: inline-block !important;
2121
}

0 commit comments

Comments
 (0)