annotate app/assets/javascripts/autosize-box-fix.js @ 97:e8a0e82213cd

Updated autosize from vendor, separated box size hack to its own function.
author Edho Arief <edho@myconan.net>
date Mon, 12 Nov 2012 09:35:55 +0700
parents
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);