Sha256: 77c867ab80831f4d553123f72d5af183fc8d889beddc894b8733950a598d0ce7

Contents?: true

Size: 1.06 KB

Versions: 19

Compression:

Stored size: 1.06 KB

Contents

- current_auto_complete = session[:auto_complete] || :leads
= content_for(:javascript_epilogue) do
  :plain
    (function ($) {
      $(function() {
        new crm.Popup({
          trigger     : "#jumper",
          target      : "#jumpbox",
          under       : "#welcome",
          appear      : 300,
          fade        : 300,
          before_show : function() {
            $("#jumper").addClass("selected");
            $("#jumpbox_label").html("");
            $("#jumpbox_label").hide();
            $("#jumpbox_menu").show();
            crm.auto_complete("#{current_auto_complete}");
          },
          after_show  : function() {
            $("#auto_complete_query").focus();
          },
          after_hide  : function() {
            $("#jumper").removeClass("selected");
          }
        });
      });
  })($);

#jumpbox{ hidden }
  %span#jumpbox_menu= jumpbox(current_auto_complete)
  %span#jumpbox_label{ hidden }
  %br
  = text_field_tag "auto_complete_query", nil, :style => "width: 310px", :autocomplete => :off
  .auto_complete#auto_complete_dropdown

Version data entries

19 entries across 19 versions & 2 rubygems

Version Path
fat_free_crm-0.14.2 app/views/layouts/_jumpbox.html.haml
fat_free_crm-0.15.2 app/views/layouts/_jumpbox.html.haml
fat_free_crm-0.16.4 app/views/layouts/_jumpbox.html.haml
fat_free_crm-0.14.1 app/views/layouts/_jumpbox.html.haml
fat_free_crm-0.15.1 app/views/layouts/_jumpbox.html.haml
fat_free_crm-0.16.3 app/views/layouts/_jumpbox.html.haml
fat_free_crm-0.16.2 app/views/layouts/_jumpbox.html.haml
fat_free_crm-0.16.1 app/views/layouts/_jumpbox.html.haml
fat_free_crm-0.16.0 app/views/layouts/_jumpbox.html.haml
fat_free_crm-0.15.0 app/views/layouts/_jumpbox.html.haml
fat_free_crm-0.15.0.beta.2 app/views/layouts/_jumpbox.html.haml
fat_free_crm-0.15.0.beta app/views/layouts/_jumpbox.html.haml
fat_free_crm-0.14.0 app/views/layouts/_jumpbox.html.haml
reduced_fat_crm-0.15.0.beta app/views/layouts/_jumpbox.html.haml
reduced_fat_crm-0.14.0 app/views/layouts/_jumpbox.html.haml
fat_free_crm-0.13.6 app/views/layouts/_jumpbox.html.haml
fat_free_crm-0.13.5 app/views/layouts/_jumpbox.html.haml
fat_free_crm-0.13.4 app/views/layouts/_jumpbox.html.haml
fat_free_crm-0.13.3 app/views/layouts/_jumpbox.html.haml