aboutsummaryrefslogtreecommitdiffstats
path: root/js/dungeon.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/dungeon.js')
-rw-r--r--js/dungeon.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/dungeon.js b/js/dungeon.js
index c23b549..6ebf4dd 100644
--- a/js/dungeon.js
+++ b/js/dungeon.js
@@ -95,7 +95,7 @@ function endBattle(v,nb, f, ret){
}
}
var tmphtml = "Le " + v + " a gagné.";
- tmphtml += "<button type=\"button\" class=\"btn btn-primary\" onclick=\"launchDungeon("+nb+","+ f +",false)\">Next Battle</button>"
+ tmphtml += "<button type=\"button\" class=\"btn btn-success\" onclick=\"launchDungeon("+nb+","+ f +",false)\">Next Battle</button>"
document.getElementById("tab4").innerHTML = tmphtml;
displayExit();
sendRequest("craftmine.php", "op=sendDungeonProgress&floor="+f+"&mob="+nb);
@@ -107,7 +107,7 @@ function endBattle(v,nb, f, ret){
function displayExit(){
var tmphtml = "<br/><br/>";
- tmphtml += "<button type=\"button\" class=\"btn btn-primary\" onclick=\"exitDungeon(false)\">Exit</button>";
+ tmphtml += "<button type=\"button\" class=\"btn btn-success\" onclick=\"exitDungeon(false)\">Exit</button>";
document.getElementById("tab4").innerHTML += tmphtml;
}