Skip to content
Snippets Groups Projects
Commit 4cfee029 authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'fix' into 'pregmod-master'

fixes

Closes #2654 and #2659

See merge request !8584
parents c0e7f322 24582143
No related branches found
No related tags found
1 merge request!8584fixes
......@@ -75,7 +75,7 @@ function compile() {
fi
devTools/concatFiles.sh js/ '*.js' bin/fc.js
devTools/concatFiles.sh css/ '*.css' bin/css.js
devTools/concatFiles.sh css/ '*.css' bin/fc.css
$TWEEGO_EXE -o $file --module=bin/fc.js --module=bin/fc.css --head resources/raster/favicon/arcologyVector.html src/ || build_failed="true"
rm -f bin/fc.js
rm -f bin/fc.css
......
new App.DomPassage("Slave Assignments Report",
() => {
V.nextLink = "Economics"; V.nextButton = "Continue";
V.nextLink = "Economics";
V.nextButton = "Continue";
const f = document.createDocumentFragment();
App.UI.DOM.appendNewElement("h1", f, `${V.arcologies[0].name} Weekly Slave Report - Week ${V.week}`);
f.append(App.EndWeek.slaveAssignmentReport());
App.UI.EndWeekAnim.end();
try {
App.UI.DOM.appendNewElement("h1", f, `${V.arcologies[0].name} Weekly Slave Report - Week ${V.week}`);
f.append(App.EndWeek.slaveAssignmentReport());
} finally {
// whatever happens, stop the end week animation so we at least know there is an error.
App.UI.EndWeekAnim.end();
}
return f;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment