Sha256: 70d023ca988dcceb3ace7998dfd88579d2f1e98c5276789c6f8af201f5928a61

Contents?: true

Size: 635 Bytes

Versions: 11

Compression:

Stored size: 635 Bytes

Contents

%p.link
  %a{ :href => "/" } « Back

%h1 http://#{@config[:hostname]}/#{@url.code}

%table
  %tr
    %td.label Short URL
    %td.label Full URL
    %td.label Clicks
    %td.label Shortened at
  
  %tr
    %td.value
      %input{ :type => "text", :value => short_url(@url), :class => 'short_url', :size => 21 }
    %td.value.fill <a href="#{@url.url}">#{@url.url}</a>
    %td.value.center= @url.clicks
    %td.value= @url.created_at.strftime("%Y-%m-%d %H:%M")

:javascript
  $(document).ready(function() {
    $('input.short_url').each(function(index) {
      $(this).mouseup(function() { $(this).select(); });
    });  
  });
  

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
firefly-1.2.2 views/info.haml
firefly-1.2.0 views/info.haml
firefly-1.1.0 views/info.haml
firefly-1.0.1 views/info.haml
firefly-0.4.5 views/info.haml
firefly-0.4.4 views/info.haml
firefly-0.4.3 views/info.haml
firefly-0.4.2 views/info.haml
firefly-0.4.1 views/info.haml
firefly-0.4.0.1 views/info.haml
firefly-0.4.0 views/info.haml