mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-22 15:43:49 +01:00
remove wiki button from hacking mission, fix jsx class not being className
This commit is contained in:
parent
dc79f7a940
commit
e0745d7757
@ -305,15 +305,6 @@ HackingMission.prototype.createPageDom = function() {
|
||||
return false;
|
||||
});
|
||||
|
||||
var wikiGuideBtn = document.createElement("a");
|
||||
wikiGuideBtn.innerText = "Wiki Guide";
|
||||
wikiGuideBtn.classList.add("a-link-button");
|
||||
wikiGuideBtn.style.display = "inline-block";
|
||||
wikiGuideBtn.classList.add("hack-mission-header-element");
|
||||
wikiGuideBtn.target = "_blank";
|
||||
// TODO Add link to wiki page wikiGuideBtn.href =
|
||||
|
||||
|
||||
// Start button will get replaced with forfeit when game is started
|
||||
var startBtn = document.createElement("a");
|
||||
startBtn.innerHTML = "Start";
|
||||
@ -490,7 +481,6 @@ HackingMission.prototype.createPageDom = function() {
|
||||
|
||||
container.appendChild(headerText);
|
||||
container.appendChild(inGameGuideBtn);
|
||||
container.appendChild(wikiGuideBtn);
|
||||
container.appendChild(startBtn);
|
||||
container.appendChild(forfeitMission);
|
||||
container.appendChild(timer);
|
||||
|
@ -1151,8 +1151,8 @@ const Engine = {
|
||||
const timeOfflineString = convertTimeMsToTimeElapsedString(time);
|
||||
dialogBoxCreate(<>
|
||||
Offline for {timeOfflineString}. While you were offline, your scripts generated
|
||||
<span class='money-gold'> {numeralWrapper.formatMoney(offlineProductionFromScripts)} </span>
|
||||
and your Hacknet Nodes generated <span class='money-gold'>{hacknetProdInfo}</span>.
|
||||
<span className='money-gold'> {numeralWrapper.formatMoney(offlineProductionFromScripts)} </span>
|
||||
and your Hacknet Nodes generated <span className='money-gold'>{hacknetProdInfo}</span>.
|
||||
</>);
|
||||
// Close main menu accordions for loaded game
|
||||
var visibleMenuTabs = [terminal, createScript, activeScripts, stats,
|
||||
|
Loading…
Reference in New Issue
Block a user