Sha256: 8fc245868128be6c426927fe2126193843b8e28d39d3c07c001c79b643553a12

Contents?: true

Size: 712 Bytes

Versions: 5

Compression:

Stored size: 712 Bytes

Contents

#footer
  .body-width
    .floatleft{ :style => "width:100%;" }
      %a{:href => "http://www.carboni.ca/" }
        %img{ :src => "/images/carbonica.png", :height => "50", :width => "244" }
      %form
        %select#picker
          - themes.each do |theme|
            %option{:name => theme.to_s, :value => theme.to_s}= theme.to_s
:javascript
  $(function() {
    $("#picker").change(function() { 
      var val = $("#picker option:selected").val();
      $("pre").attr("class","").addClass("code").addClass(val);
      $.cookie("codetheme", val);
    });
    var currentCookie = $.cookie("codetheme");
    if (currentCookie) {
      $("#picker").val(currentCookie);
      $("#picker").change();
    }
  });

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
amp-0.5.3 site/src/include/_footer.haml
amp-0.5.2 site/src/include/_footer.haml
amp-0.5.1 site/src/include/_footer.haml
amp-pure-0.5.0 site/src/include/_footer.haml
amp-0.5.0 site/src/include/_footer.haml