選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

38 行
942 B

var flag_20180225_animation = false;
function switch_20180225_animation()
{
  btn = document.getElementById('20180225_control_btn');
  ctrl = document.getElementById('20180225_control_icon');
  if(ctrl.className == "glyphicon glyphicon-pause")
  {
    ctrl.title = "PLAY";
    ctrl.className = "glyphicon glyphicon-play";
  } else {
    ctrl.title = "PAUSE";
    ctrl.className = "glyphicon glyphicon-pause";
  }
  flag_20180225_animation = ! flag_20180225_animation;
  if (flag_20180225_animation) 
  {
    Fluid.initialize();
    Fluid.draw();
  }
}
function init_20180225_animation()
{
  ctrl = document.getElementById('20180225_control_icon');
  ctrl.title = "PLAY";
  ctrl.className = "glyphicon glyphicon-play";
  flag_20180225_animation = false;
}
function init_2018025(leblock)
{
  current_block_hash = leblock.hash;
  init_20180225_animation();
}
$(document).ready(function(){
  blockchainListener.addBlockHook(init_2018025);
});