Mercurial > zeropaste
annotate app/assets/javascripts/pastes.js @ 191:4e409ac7082d
Also expires the page upon deletion.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Sat, 23 Feb 2013 14:53:47 +0900 |
parents | e8a0e82213cd |
children |
rev | line source |
---|---|
2 | 1 // Place all the behaviors and hooks related to the matching controller here. |
2 // All this logic will automatically be available in application.js. | |
39 | 3 |
78
6ae3333a0251
Moved out link click listener from $(document).ready.
Edho Arief <edho@myconan.net>
parents:
76
diff
changeset
|
4 $(document).on('click', '#reset_paste', function() { |
6ae3333a0251
Moved out link click listener from $(document).ready.
Edho Arief <edho@myconan.net>
parents:
76
diff
changeset
|
5 $('#paste_paste').val(''); |
6ae3333a0251
Moved out link click listener from $(document).ready.
Edho Arief <edho@myconan.net>
parents:
76
diff
changeset
|
6 $('#paste_paste').focus(); |
6ae3333a0251
Moved out link click listener from $(document).ready.
Edho Arief <edho@myconan.net>
parents:
76
diff
changeset
|
7 return false; |
6ae3333a0251
Moved out link click listener from $(document).ready.
Edho Arief <edho@myconan.net>
parents:
76
diff
changeset
|
8 }); |
39 | 9 $(document).ready(function() { |
79
50b8738d6428
Use (modified) autosize to automatically resize textarea.
Edho Arief <edho@myconan.net>
parents:
78
diff
changeset
|
10 $('#paste_paste').autosize({ className: 'mirrored_text row-fluid', append: "\n"}); |
97
e8a0e82213cd
Updated autosize from vendor, separated box size hack to its own function.
Edho Arief <edho@myconan.net>
parents:
79
diff
changeset
|
11 $.autosize_box_fix($('.mirrored_text')); |
45
37a05df38236
Immediately focus on input box.
Edho Arief <edho@myconan.net>
parents:
44
diff
changeset
|
12 $('#paste_paste').focus(); |
39 | 13 }) |