Changeset 1124319
- Timestamp:
- 03/31/2015 10:33:37 AM (11 years ago)
- Location:
- wr-megamenu/trunk
- Files:
-
- 6 edited
-
README.txt (modified) (1 diff)
-
assets/3rd-party/joomlashine/js/jsn-modalresize.js (modified) (1 diff)
-
includes/helpers/layout.php (modified) (1 diff)
-
main.php (modified) (1 diff)
-
templates/menu-builder.php (modified) (1 diff)
-
templates/modal.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wr-megamenu/trunk/README.txt
r1114534 r1124319 87 87 * Fixed Resizing feature doesn't work smooth 88 88 * Fixed Sub menu level 3 auto moved to level 1 89 90 = 1.0.9 = 91 * Fixed php errors detected by Query Monitor plugin 92 * Fixed Bug with resizing Styling form 93 -
wr-megamenu/trunk/assets/3rd-party/joomlashine/js/jsn-modalresize.js
r1001124 r1124319 38 38 // Resize all wr-modal 39 39 $('.wr-dialog').each(function () { 40 if ( $(this).find('#jsn_view_modal').length ) {40 if ( $(this).find('#jsn_view_modal').length || $(this).find('#menu-styling').length ) { 41 41 width = full_width; 42 42 } else { -
wr-megamenu/trunk/includes/helpers/layout.php
r1001124 r1124319 29 29 include $file_path; 30 30 } else { 31 __( '<h2>Template file not found.</h2>', WR_MEGAMENU_TEXTDOMAIN );31 '<h2>' . __( 'Template file not found.', WR_MEGAMENU_TEXTDOMAIN ) . '</h2>'; 32 32 } 33 33 } -
wr-megamenu/trunk/main.php
r1114531 r1124319 4 4 Plugin URI: http://woorockets.com 5 5 Description: WR MegaMenu 6 Version: 1.0. 86 Version: 1.0.9 7 7 Author: WooRockets 8 8 Author URI: http://woorockets.com -
wr-megamenu/trunk/templates/menu-builder.php
r1001124 r1124319 425 425 <?php 426 426 foreach ( $locations as $key => $value ) { 427 $selected = ( $key == $data['location'] ) ? 'selected="selected"' : '';427 $selected = ( isset($data['location']) && $key == $data['location'] ) ? 'selected="selected"' : ''; 428 428 echo "<option value='" . $key . "' " . $selected . '>' . $value . '</option>'; 429 429 } -
wr-megamenu/trunk/templates/modal.php
r1001124 r1124319 161 161 <input type="hidden" id="wr_previewing" value="0" /> 162 162 <input id="shortcode_type" type="hidden" value="<?php echo esc_attr( $el_type ); ?>" /> 163 <input id="shortcode_name" type="hidden" value="<?php echo esc_attr( mysql_real_escape_string( $_GET['wr_modal_type'] ) ); ?>" />163 <input id="shortcode_name" type="hidden" value="<?php echo esc_attr( addslashes( $_GET['wr_modal_type'] ) ); ?>" /> 164 164 165 165 <div class="jsn-modal-overlay"></div>
Note: See TracChangeset
for help on using the changeset viewer.