Mercurial > zeropaste
view app/assets/javascripts/zp.new.js @ 217:cbd5819d7468
Completely wtf init for zp.new
author | Edho Arief <edho@myconan.net> |
---|---|
date | Sun, 12 May 2013 02:52:49 +0900 |
parents | 0e52170b7b6a |
children | 45bd94c70896 |
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 row-fluid', append: "\n"}); $.autosize_box_fix($(".mirrored_text")) this.input().focus() } } })(jQuery)