Mercurial > zeropaste
annotate app/assets/javascripts/zp.new.js.coffee @ 361:9d36e15cd5eb
Update gems.
author | edogawaconan <me@myconan.net> |
---|---|
date | Mon, 24 Nov 2014 17:14:24 +0900 |
parents | 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() |