Mercurial > zeropaste
view app/helpers/pastes_helper.rb @ 222:9bc35555d3e3
Use external jquery instead of rails' builtin
Saves bandwidth and (hopefully) improves speed.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Sun, 12 May 2013 12:38:03 +0900 |
parents | 500c09718fd7 |
children | 7c7b7906ebd9 |
line wrap: on
line source
module PastesHelper def print_txt_create_result unless @paste.errors.any? url = paste_path @paste, :only_path => false if @fresh "#{url} (key: #{@paste.key})" else url end else 'Failed' end end end