annotate app/assets/javascripts/autosize-box-fix.js @ 254:bcca41003e84

Use postgres 'cuz mysql is shit. - utf8 isn't utf8 (hint: utf8mb4) - index key too loooooooooooong Nope.
author edogawaconan <me@myconan.net>
date Tue, 15 Oct 2013 01:47:19 +0900
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);