PluginProbe ʕ •ᴥ•ʔ
reCaptcha by BestWebSoft / 1.09
reCaptcha by BestWebSoft v1.09
1.79 1.80 1.82 1.83 1.84 1.85 1.86 1.87 trunk 1.01 1.02 1.03 1.04 1.05 1.06 1.07 1.08 1.09 1.10 1.11 1.12 1.13 1.14 1.15 1.16 1.17 1.18 1.19 1.20 1.21 1.22 1.23 1.24 1.25 1.26 1.27 1.28 1.29 1.30 1.31 1.32 1.33 1.34 1.35 1.36 1.37 1.38 1.39 1.40 1.41 1.42 1.43 1.44 1.45 1.46 1.47 1.48 1.49 1.50 1.51 1.52 1.53 1.54 1.55 1.56 1.57 1.58 1.59 1.60 1.61 1.62 1.63 1.64 1.65 1.66 1.67 1.68 1.70 1.71 1.72 1.73 1.74 1.75 1.78
google-captcha / bws_menu / js / bws_menu.js
google-captcha / bws_menu / js Last commit date
bws_menu.js 11 years ago
bws_menu.js
58 lines
1 (function($) {
2 $(document).ready( function() {
3 /* new version */
4 var product = $( '.bws_product' ),
5 max = 0;
6 $( product ).each( function () {
7 if ( $( this ).outerHeight( true ) > max )
8 max = $( this ).outerHeight( true );
9 });
10 $( '.bws_product' ).css( 'height', max + 'px' );
11
12 var product_links = $( '.bws_product_links' );
13 max = 0;
14 $( product_links ).each( function () {
15 if ( $( this ).innerHeight() > max )
16 max = $( this ).innerHeight();
17 });
18 max = max - parseInt( $( '.bws_product_links' ).css( 'padding-top' ) ) - parseInt( $( '.bws_product_links' ).css( 'padding-bottom' ) );
19 $( '.bws_product_links' ).css( 'height', max + 'px' );
20
21 $( '.bws_product_box' ).hover( function() {
22 if ( $( this ).children( '.bws_product' ).children( '.bws_product_content' ).children( '.bws_product_description' ).length > 0 ) {
23 $( this ).children( '.bws_product' ).addClass( 'bws_product_pro' );
24 $( this ).children( '.bws_product' ).children( '.bws_product_content' ).children( '.bws_product_description' ).css( 'display', 'block' );
25 $( this ).children( '.bws_product' ).children( '.bws_product_content' ).children( '.bws_product_icon' ).css( 'display', 'none' );
26 $( this ).children( '.bws_product' ).children( '.bws_product_button' ).css( 'display', 'inline-block' );
27 }
28 }, function() {
29 if ( $( this ).children( '.bws_product' ).children( '.bws_product_content' ).children( '.bws_product_description' ).length > 0 ) {
30 $( this ).children( '.bws_product' ).removeClass( 'bws_product_pro' );
31 $( this ).children( '.bws_product' ).children( '.bws_product_content' ).children( '.bws_product_description' ).css( 'display', 'none' );
32 $( this ).children( '.bws_product' ).children( '.bws_product_content' ).children( '.bws_product_icon' ).css( 'display', 'block' );
33 $( this ).children( '.bws_product' ).children( '.bws_product_button' ).css( 'display', 'none' );
34 }
35 });
36
37 /* old version */
38 if ( $( 'input[name="bwsmn_form_email"]' ).val() == '' ) {
39 $( '.bws_system_info_meta_box .inside' ).css( 'display', 'none' );
40 }
41
42 $( '.bws_system_info_meta_box .hndle' ).click( function() {
43 if ( $( '.bws_system_info_meta_box .inside' ).is( ':visible' ) ) {
44 $( '.bws_system_info_meta_box .inside' ).css( 'display', 'none' );
45 } else {
46 $( '.bws_system_info_meta_box .inside' ).css( 'display', 'block' );
47 }
48 });
49
50 $( '.bws_system_info_meta_box .handlediv' ).click( function() {
51 if ( $( '.bws_system_info_meta_box .inside' ).is( ':visible' ) ) {
52 $( '.bws_system_info_meta_box .inside' ).css( 'display', 'none' );
53 } else {
54 $( '.bws_system_info_meta_box .inside' ).css( 'display', 'block' );
55 }
56 });
57 });
58 })(jQuery);