Mercurial > zeropaste
annotate app/assets/javascripts/pastes.js @ 45:37a05df38236
Immediately focus on input box.
| author | Edho Arief <edho@myconan.net> |
|---|---|
| date | Thu, 04 Oct 2012 02:38:35 +0700 |
| parents | 6a9e0c09bbd8 |
| children | 5635c91f4bfd |
| 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 |
| 4 $(document).ready(function() { | |
| 5 $('#reset_paste').click(function() { | |
| 6 $('#paste_paste').val(''); | |
| 7 $('#paste_paste').focus(); | |
| 8 return false; | |
| 9 }); | |
|
44
6a9e0c09bbd8
Ensure input box's width is always 100%.
Edho Arief <edho@myconan.net>
parents:
39
diff
changeset
|
10 $(window).resize(function() { |
|
6a9e0c09bbd8
Ensure input box's width is always 100%.
Edho Arief <edho@myconan.net>
parents:
39
diff
changeset
|
11 $('#paste_paste').css('width', '100%'); |
|
6a9e0c09bbd8
Ensure input box's width is always 100%.
Edho Arief <edho@myconan.net>
parents:
39
diff
changeset
|
12 }) |
|
45
37a05df38236
Immediately focus on input box.
Edho Arief <edho@myconan.net>
parents:
44
diff
changeset
|
13 $('#paste_paste').focus(); |
| 39 | 14 }) |
