Changeset 1168145
- Timestamp:
- 05/27/2015 03:41:32 AM (11 years ago)
- Location:
- wr-pagebuilder/trunk
- Files:
-
- 5 added
- 7 edited
-
README.txt (modified) (1 diff)
-
core/converter/visual-composer.php (modified) (1 diff)
-
core/helper/shortcode.php (modified) (1 diff)
-
core/helper/type.php (modified) (1 diff)
-
shortcodes/carousel/item/carousel.php (modified) (2 diffs)
-
shortcodes/pricing-table/assets/js/pricing_table_frontend.js (modified) (1 diff)
-
shortcodes/share (added)
-
shortcodes/share/assets (added)
-
shortcodes/share/assets/css (added)
-
shortcodes/share/assets/css/share_frontend.css (added)
-
shortcodes/share/share.php (added)
-
wr-pagebuilder.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wr-pagebuilder/trunk/README.txt
r1140371 r1168145 124 124 * Fixed display problem of Google map element on resizing browser 125 125 * Added parameter 'Scrollwheel Zooming' to Google map element 126 127 = 2.5.0 = 128 129 * Fixed broken lines in Price Table Element 130 * Fixed Alt attribute missing for images in carousel 131 * Added Share element -
wr-pagebuilder/trunk/core/converter/visual-composer.php
r1000337 r1168145 84 84 ), 85 85 ), 86 'vc_message' => array( 87 'tag' => 'wr_share', 88 'attributes' => array( 89 'color' => 'alert_style', 90 'el_class' => 'css_suffix', 91 ), 92 ), 86 93 87 94 'vc_toggle' => array( -
wr-pagebuilder/trunk/core/helper/shortcode.php
r1119552 r1168145 64 64 65 65 // Compare current provides vs stored providers 66 if ( $providers == $Wr_Sc_Providers ) {67 return ;68 }66 // if ( $providers == $Wr_Sc_Providers ) { 67 // return ; 68 // } 69 69 70 70 // Update providers data -
wr-pagebuilder/trunk/core/helper/type.php
r1129341 r1168145 112 112 ); 113 113 } 114 115 /** 116 ** share type options 117 * 118 * @return array 119 */ 120 static function get_share_type() { 121 return array( 122 'left' => __( 'Left', WR_PBL ), 123 'center' => __( 'Center', WR_PBL ), 124 'right' => __( 'Right', WR_PBL ), 125 ); 126 } 114 127 115 128 /** -
wr-pagebuilder/trunk/shortcodes/carousel/item/carousel.php
r1026157 r1168145 59 59 'std' => __( WR_Pb_Utils_Placeholder::add_placeholder( 'Carousel Item %s', 'index' ), WR_PBL ), 60 60 ), 61 array( 62 'name' => __( 'Alt Description', WR_PBL ), 63 'id' => 'alt', 64 'type' => 'text_field', 65 'class' => 'input-sm', 66 'std' => __( WR_Pb_Utils_Placeholder::add_placeholder( 'Item description %s', 'index' ), WR_PBL ), 67 ), 61 68 array( 62 69 'name' => __( 'Body', WR_PBL ), … … 88 95 extract( shortcode_atts( $this->config['params'], $atts ) ); 89 96 $content_class = ! empty( $image_file ) ? 'carousel-caption' : 'carousel-content'; 90 $img = ! empty( $image_file ) ? "<img width='{WIDTH}' height='{HEIGHT}' src='$image_file' style='height : {HEIGHT}px;'>" : '';97 $img = ! empty( $image_file ) ? "<img width='{WIDTH}' height='{HEIGHT}' src='$image_file' alt='$alt' style='height : {HEIGHT}px;'>" : ''; 91 98 92 99 // remove image shortcode in content -
wr-pagebuilder/trunk/shortcodes/pricing-table/assets/js/pricing_table_frontend.js
r1000337 r1168145 25 25 "type" : "iframe" 26 26 }); 27 28 var c_li_first = $('.wr-prtbl-cols.first .wr-prtbl-features li'); 29 c_col_not_first = $('.wr-prtbl-cols:not(.first)'); 30 avg_height = $('.wr-prtbl-cols:not(.first) .wr-prtbl-header').height(); 31 i = 0; 32 c_li_first.each(function () { 33 height = $(this).height(); 34 c_col_not_first.each(function(){ 35 $(this).find('.wr-prtbl-features li').eq(i).height(height); 36 }); 37 i++; 38 }); 39 40 c_col_not_first.each(function(){ 41 lgt = $(this).find('.wr-prtbl-header .wr-prtbl-meta p').length; 42 if(lgt >0){ 43 $('.wr-prtbl-cols.first .wr-prtbl-header').height(avg_height); 44 return false; 45 } 46 }); 47 27 48 }); 28 49 -
wr-pagebuilder/trunk/wr-pagebuilder.php
r1140371 r1168145 4 4 * Plugin URI: http://www.woorockets.com 5 5 * Description: Awesome content builder for Wordpress websites 6 * Version: 2. 4.126 * Version: 2.5.0 7 7 * Author: WooRockets Team <[email protected]> 8 8 * Author URI: http://www.wordpress.org/plugins/wr-pagebuilder
Note: See TracChangeset
for help on using the changeset viewer.