Mercurial > zeropaste
annotate app/assets/javascripts/zp.new.coffee @ 370:5a4d31e97937
Remove extra file extensions.
author | edogawaconan <me@myconan.net> |
---|---|
date | Tue, 14 Apr 2015 00:22:07 +0900 |
parents | app/assets/javascripts/zp.new.js.coffee@66fd92af3977 |
children |
rev | line source |
---|---|
351 | 1 #= require jquery.autosize |
2 #= require autosize_box_fix | |
3 window.zp.new = | |
4 input: -> $("#paste_paste") | |
5 | |
6 clear: (e) -> | |
7 e.preventDefault() | |
8 @input().val("").focus() | |
9 | |
10 init: -> | |
11 return unless @input().length | |
12 | |
13 $(document).on "click", "#reset_paste", $.proxy(@clear, this) | |
14 @input().autosize className: "mirrored_text form-control", append: "\n" | |
15 $.autosize_box_fix $(".mirrored_text") | |
16 @input().focus() |