Mercurial > zeropaste
view app/assets/javascripts/zp.new.js @ 325:45bf99bfd48b
Remove authenticity token from form.
author | edogawaconan <me@myconan.net> |
---|---|
date | Sun, 06 Apr 2014 18:25:59 +0900 |
parents | 45bd94c70896 |
children | 3ce44f960d3a |
line wrap: on
line source
//= require jquery.autosize //= require autosize-box-fix (function($) { window.zp.new = { input: function() { return $("#paste_paste") }, clear: function(e) { this.input().val("").focus() e.preventDefault() }, init: function() { if (this.input().length === 0) { return } $(document).on('click', "#reset_paste", $.proxy(this.clear, this)) this.input().autosize({ className: 'mirrored_text form-control', append: "\n"}); $.autosize_box_fix($(".mirrored_text")) this.input().focus() } } })(jQuery)