PluginProbe
Catch Web Tools / 0.1
Catch Web Tools v0.1
trunk 0.1 0.2 0.3 0.4 1.0 1.1 1.2 1.3 1.4 1.4.1 1.5 1.5.1 1.5.2 1.6 1.7 1.8 1.8.1 1.9 1.9.1 1.9.2 1.9.3 1.9.4 1.9.5 1.9.6 All 58 releases
catch-web-tools / admin / js / equal_height.js

equal_height.js in Catch Web Tools 0.1, at admin/js/equal_height.js

17 lines 383 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * Equal height jQuery for Dashboard
3 */
4 function equalHeight(group) {
5 tallest = 0;
6 group.each(function() {
7 thisHeight = jQuery(this).height();
8 if(thisHeight > tallest) {
9 tallest = thisHeight;
10 }
11 });
12 group.height(tallest);
13 }
14 jQuery(document).ready(function() {
15 equalHeight(jQuery(".short-desc"));
16 equalHeight(jQuery(".long-desc"));
17 });