Sha256: d67e8422181e79ca1948115ecd1136fbca53f9547ad593aa8663e24845112703

Contents?: true

Size: 389 Bytes

Versions: 10

Compression:

Stored size: 389 Bytes

Contents

<h3>foo</h3>
<div id="result">
  waiting..
</div>
<script>
  $(function(){
    $.get("#{r :_foo_gen}");
    var loop = function(){
      $.getJSON("#{r '_foo_get.json'}", function(result){
        console.debug(result[0], result[1]);
        $("#result").append(result[1]);
        if (!result[0]) {
          setTimeout(loop, 2000);
        }
      });
    };
    loop();
  });
</script>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
ruby-station-0.1.6 view/applications/foo.xhtml
ruby-station-0.1.5 view/applications/foo.xhtml
ruby-station-0.1.4 view/applications/foo.xhtml
ruby-station-0.1.4.rc3 view/applications/foo.xhtml
ruby-station-0.1.4.rc2 view/applications/foo.xhtml
ruby-station-0.1.4.rc1 view/applications/foo.xhtml
ruby-station-0.1.3 view/applications/foo.xhtml
ruby-station-0.1.2 view/applications/foo.xhtml
ruby-station-0.1.1 view/applications/foo.xhtml
ruby-station-0.1.0 view/applications/foo.xhtml