Widget:A2debugger: Unterschied zwischen den Versionen

aus Kamelopedia, der wüsten Enzyklopädie
Zur Navigation springen Zur Suche springen
Zeile 22: Zeile 22:
 
   
 
   
 
  $("#a2dbgSwitch").click();
 
  $("#a2dbgSwitch").click();
 +
 +
$("#a2dbgGotoBtn").click( function(){
 +
  a2.loadPage(parseInt($(this).val()));
 +
});
 +
 +
$("#a2dbgItemBtn").click( function(){
 +
  a2.stateDecode(a2.cpage+"|"+$(this).text().split("\n").join("|"));
 +
});
 
  </script>
 
  </script>

Version vom 12. Juli 2012, 16:38 Uhr

<form>
  <select id="a2dbgSwitch">
    <option value="a2dbgState">Spielstand</option>
    <option value="a2dbgEventLog">Event-Log</option>
  </select>
      <input type="text" id="a2dbgGoto" maxlength="3" style="width: 4em;"/><input type="button" value="Los!" id="a2dbgGotoBtn">
<textarea id="a2dbgItems" style="width:80%; height: 200px;"></textarea><input type="button" value="Setze!" id="a2dbgItemBtn">
</form>

<script type="text/javascript">
$("#a2dbgSwitch").click(function(){
  $(".a2dbgWindow").hide();
  $("#"+$(this).val()).show();
  $("#a2dbgBottom:visible").scrollTop($("#a2dbgBottom")[0].scrollHeight);
});

$("#a2dbgSwitch").click();
$("#a2dbgGotoBtn").click( function(){
  a2.loadPage(parseInt($(this).val()));
});
$("#a2dbgItemBtn").click( function(){
  a2.stateDecode(a2.cpage+"|"+$(this).text().split("\n").join("|"));
});
</script>