장수 성격, 아이템 설명 툴팁 추가
This commit is contained in:
+14
-1
@@ -150,4 +150,17 @@ jQuery(function($){
|
||||
window.abilityLeadpow = abilityLeadpow;
|
||||
window.abilityLeadint = abilityLeadint;
|
||||
window.abilityPowint = abilityPowint;
|
||||
});
|
||||
|
||||
var $charInfoText = $('#charInfoText');
|
||||
var $selChar = $('#selChar');
|
||||
$selChar.change(function(){
|
||||
var $this = $(this);
|
||||
var char = $this.val();
|
||||
if(char in charInfoText){
|
||||
$charInfoText.html(charInfoText[char]);
|
||||
}
|
||||
else{
|
||||
$charInfoText.html('');
|
||||
}
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user