Sha256: 316a5502c1ddf6f09197cf18874fc590f6c9f6561ddbfd58a30daa24bd7a9f24

Contents?: true

Size: 1.17 KB

Versions: 3

Compression:

Stored size: 1.17 KB

Contents

<%-
# Include this partial to put the background updater device on your page.
# This actually just sets up the Umlaut JQuery background updater, for
# unobtrusive adding of background html content to menu page.

# Only include if we have any background services. We could check to make
# sure we only have background services we care about, but it's more work--
# the updater will only run ONCE at most wrongly, then the
# background_update action will stop it.
-%>
<% if (any_services_in_progress?) %>
  <script type="text/javascript">
    //<![CDATA[
    jQuery(document).ready(function ($) {
      var updater = new Umlaut.HtmlUpdater("<%= root_url %>", "umlaut.request_id=<%= user_request.id %>");
      <% bg_update_sections.collect do |section| %>
        updater.add_section_target({ umlaut_section_id: "<%= section[:div_id] %>" });
      <% end %>
      <%-
        # Wait the designated number of seconds before kicking off the first bg
        # update request. Future requests will be automatically made with delay.
      -%>
      setTimeout(function () { updater.update(); }, <%= umlaut_config.lookup!("initial_poll_wait_seconds", 4)*1000 %>);
    });
    //]]>
  </script>
<% end %>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
umlaut-3.3.1 app/views/resolve/_background_updater.html.erb
umlaut-3.3.0 app/views/resolve/_background_updater.html.erb
umlaut-3.2.0 app/views/resolve/_background_updater.html.erb