annotate app/assets/javascripts/autosize-box-fix.js @ 255:a894d7696b7e

More useful return of Paste.fix_all.
author edogawaconan <me@myconan.net>
date Mon, 14 Oct 2013 17:49:52 +0000
parents e8a0e82213cd
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
97
e8a0e82213cd Updated autosize from vendor, separated box size hack to its own function.
Edho Arief <edho@myconan.net>
parents:
diff changeset
1 (function($) {
e8a0e82213cd Updated autosize from vendor, separated box size hack to its own function.
Edho Arief <edho@myconan.net>
parents:
diff changeset
2 $.autosize_box_fix = function(elem) {
e8a0e82213cd Updated autosize from vendor, separated box size hack to its own function.
Edho Arief <edho@myconan.net>
parents:
diff changeset
3 elem.css('box-sizing', '');
e8a0e82213cd Updated autosize from vendor, separated box size hack to its own function.
Edho Arief <edho@myconan.net>
parents:
diff changeset
4 elem.css('-webkit-box-sizing', '');
e8a0e82213cd Updated autosize from vendor, separated box size hack to its own function.
Edho Arief <edho@myconan.net>
parents:
diff changeset
5 elem.css('-moz-box-sizing', '');
e8a0e82213cd Updated autosize from vendor, separated box size hack to its own function.
Edho Arief <edho@myconan.net>
parents:
diff changeset
6 };
e8a0e82213cd Updated autosize from vendor, separated box size hack to its own function.
Edho Arief <edho@myconan.net>
parents:
diff changeset
7 }) (jQuery);