aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpiernov <piernov@piernov.org>2016-05-07 14:02:55 +0200
committerpiernov <piernov@piernov.org>2016-05-07 14:03:01 +0200
commitf5f13ebb900746c942d339149a838b6c8ef0586d (patch)
treea5b4285333feb9c10366beb73f92b1f58837b351
parent3c1b2013c1e2f71017ed44ad88737848c21d77ed (diff)
downloadcandybox-f5f13ebb900746c942d339149a838b6c8ef0586d.tar.gz
candybox-f5f13ebb900746c942d339149a838b6c8ef0586d.tar.bz2
candybox-f5f13ebb900746c942d339149a838b6c8ef0586d.tar.xz
candybox-f5f13ebb900746c942d339149a838b6c8ef0586d.zip
btn-primary → btn-success
-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;
}