diff options
author | piernov <piernov@piernov.org> | 2016-05-07 14:02:55 +0200 |
---|---|---|
committer | piernov <piernov@piernov.org> | 2016-05-07 14:03:01 +0200 |
commit | f5f13ebb900746c942d339149a838b6c8ef0586d (patch) | |
tree | a5b4285333feb9c10366beb73f92b1f58837b351 /js | |
parent | 3c1b2013c1e2f71017ed44ad88737848c21d77ed (diff) | |
download | candybox-f5f13ebb900746c942d339149a838b6c8ef0586d.tar.gz candybox-f5f13ebb900746c942d339149a838b6c8ef0586d.tar.bz2 candybox-f5f13ebb900746c942d339149a838b6c8ef0586d.tar.xz candybox-f5f13ebb900746c942d339149a838b6c8ef0586d.zip |
btn-primary → btn-success
Diffstat (limited to 'js')
-rw-r--r-- | js/dungeon.js | 4 |
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; } |