This repository was archived by the owner on Jun 7, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +3
-16
lines changed
Expand file tree Collapse file tree 4 files changed +3
-16
lines changed Original file line number Diff line number Diff line change 99 "build" : " webpack --mode=development" ,
1010 "buildj" : " webpack --mode=development --profile --json > stats.json" ,
1111 "watch" : " webpack --mode=development --watch" ,
12- "start" : " webpack-dev-server --mode=development --open" ,
1312 "serve" : " cd dist; python -m http.server 8080; cd .." ,
1413 "dist" : " webpack --mode=production" ,
1514 "distj" : " webpack --mode=production --profile --json > stats.json" ,
1918 "author" : " " ,
2019 "license" : " ISC" ,
2120 "devDependencies" : {
22- "compression-webpack-plugin" : " ^9.0.0" ,
2321 "copy-webpack-plugin" : " ^9.0.0" ,
22+ "compression-webpack-plugin" : " ^9.0.0" ,
2423 "css-loader" : " ^6.0.0" ,
2524 "css-minimizer-webpack-plugin" : " ^3.0.0" ,
2625 "html-loader" : " ^3.0.0" ,
2726 "html-webpack-plugin" : " ^5.0.0" ,
2827 "mini-css-extract-plugin" : " ^2.0.0" ,
2928 "webpack" : " ^5.61.0" ,
3029 "webpack-bundle-analyzer" : " ^4.0.0" ,
31- "webpack-cli" : " ^4.9.2" ,
32- "webpack-dev-server" : " ^4.7.4"
30+ "webpack-cli" : " ^4.0.0"
3331 },
3432 "dependencies" : {
3533 "-" : " 0.0.1" ,
Original file line number Diff line number Diff line change @@ -3049,7 +3049,7 @@ class ParsonsInput {
30493049 this.parentElement = parentElement;
30503050 this.el.id = 'regextool-' + this.parentElement.toolNumber + '-parsons-input';
30513051 const dragTip = document.createElement('div');
3052- dragTip.innerText = 'Drag or click to select from the symbols below to form your code';
3052+ dragTip.innerText = 'Drag from the blocks below to form your code';
30533053 dragTip.classList.add('hparsons-tip');
30543054 this.el.append(dragTip);
30553055 this._dragArea = document.createElement('div');
Original file line number Diff line number Diff line change @@ -127,7 +127,6 @@ export default class MultipleChoice extends RunestoneBase {
127127 renderMCContainer ( ) {
128128 this . containerDiv = document . createElement ( "div" ) ;
129129 $ ( this . containerDiv ) . html ( this . question ) ;
130- $ ( this . containerDiv ) . addClass ( 'mctesttest' ) ;
131130 $ ( this . containerDiv ) . addClass ( this . origElem . getAttribute ( "class" ) ) ;
132131 this . containerDiv . id = this . divid ;
133132 }
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments