Sha256: 002281ce410d158d5ce7fe3a840ab4386c0bc0c2aed5c2181892300bc29df91b

Contents?: true

Size: 1.15 KB

Versions: 4

Compression:

Stored size: 1.15 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

4 entries across 4 versions & 1 rubygems

Version Path
umlaut-3.1.1 app/views/resolve/_background_updater.html.erb
umlaut-3.1.0 app/views/resolve/_background_updater.html.erb
umlaut-3.1.0.pre2 app/views/resolve/_background_updater.html.erb
umlaut-3.1.0.pre1 app/views/resolve/_background_updater.html.erb