Sha256: 7c6d2bea81f8ba2b702acd272c64f0b426228b78a2c642e659f58d16b2ee7b77

Contents?: true

Size: 962 Bytes

Versions: 4

Compression:

Stored size: 962 Bytes

Contents

<div class="jumbotron">
  <h1>Welcome!</h1>

  <p>Please click the button below to start pickin' files!</p>

  <%= form_tag('/file', id: 'main_form', method: 'post') do %>
    <%= button_tag("Browse", type: 'button', class: 'btn btn-large btn-success', id: "browse-btn",
      'data-toggle' => 'browse-everything', 'data-route' => browse_everything_engine.root_path,
      'data-target' => '#main_form') %>
    <%= button_tag("Submit", type: 'submit', class: 'btn btn-large btn-primary', id: "submit-btn") %>
  <% end %>

  <p id="status">0 items selected</p>

  <script>
    $(document).on('turbolinks:load', function() {
      // Have to make sure onReady is ALSO passed, in case it's first load.
      $(function() {
        $('#browse-btn').browseEverything()
          .done(function(data) { $('#status').html(data.length.toString() + " items selected") })
          .cancel(function()   { window.alert('Canceled!') });
      });
    });
  </script>
</div>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
browse-everything-1.5.0 spec/dummy_test_app/app/views/file_handler/main.html.erb
browse-everything-1.4.0 spec/dummy_test_app/app/views/file_handler/main.html.erb
browse-everything-1.3.0 spec/dummy_test_app/app/views/file_handler/main.html.erb
browse-everything-1.2.0 spec/dummy_test_app/app/views/file_handler/main.html.erb