Changeset 1184923
- Timestamp:
- 06/21/2015 06:00:01 AM (11 years ago)
- Location:
- the-welcomizer/trunk
- Files:
-
- 4 edited
-
includes/twiz.ajax.class.php (modified) (2 diffs)
-
includes/twiz.class.php (modified) (1 diff)
-
includes/twiz.menu.class.php (modified) (1 diff)
-
twiz-index.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
the-welcomizer/trunk/includes/twiz.ajax.class.php
r1180732 r1184923 66 66 twizGetMenu(); 67 67 twizPostMenu(twiz_current_section_id,"","none"); 68 twizGetMultiSection(twiz_current_section_id, "'.parent::ACTION_EDIT.'", "'.parent::ACTION_IMPORT _FROM_SERVER.'");68 twizGetMultiSection(twiz_current_section_id, "'.parent::ACTION_EDIT.'", "'.parent::ACTION_IMPORT.'"); 69 69 }else{ 70 70 restoreTwizCurrentSectionId(); … … 2313 2313 twiz_current_section_id = data.newsectionid; 2314 2314 twizGetMenu(); 2315 twizGetMultiSection(twiz_current_section_id, "'.parent::ACTION_EDIT.'", "'.parent::ACTION_IMPORT _FROM_SERVER.'");2315 twizGetMultiSection(twiz_current_section_id, "'.parent::ACTION_EDIT.'", "'.parent::ACTION_IMPORT.'"); 2316 2316 $("#twiz_sub_container").css("display", "block"); 2317 2317 twiz_view_id = null; -
the-welcomizer/trunk/includes/twiz.class.php
r1180734 r1184923 117 117 const ACTION_DELETE = 'delete'; 118 118 const ACTION_STATUS = 'status'; 119 const ACTION_IMPORT = 'import'; 119 120 const ACTION_IMPORT_FROM_COMPUTER = 'importfromcomputer'; 120 121 const ACTION_IMPORT_FROM_SERVER = 'importfromserver'; -
the-welcomizer/trunk/includes/twiz.menu.class.php
r1180514 r1184923 1346 1346 break; 1347 1347 1348 case parent::ACTION_IMPORT _FROM_SERVER: // on edit, and import from the server1348 case parent::ACTION_IMPORT: // from server or from computer 1349 1349 1350 1350 $stay = ''; // not stay exception 1351 $jsscript .= '$("#twiz_menu_save_img_box_1").show(); 1352 $("#twiz_menu_save_img_box_1").attr("class","twiz-success twiz-loading-gif-save"); 1353 $("#twiz_menu_save_img_box_1").animate({ opacity: 0 }); 1351 $jsscript .= ' 1354 1352 $("#twiz_shortcode_sample").select(); 1355 1353 $("#twiz_shortcode_sample").animate({opacity:0}, 300, function(){$("#twiz_shortcode_sample").animate({opacity:1}, 300, function(){})});'; -
the-welcomizer/trunk/twiz-index.php
r1180510 r1184923 412 412 wp_enqueue_script('twiz-jquery.ui.droppable.min', plugin_dir_url( __FILE__ ) .'includes/jquery/ui/droppable.min.js'); 413 413 414 // Admin Ajax script415 wp_enqueue_script( 'twiz-ajax-request', plugin_dir_url( __FILE__ ) . 'twiz-ajax.js.php', array( 'jquery' ) );416 417 414 // Fileuploader 418 415 wp_enqueue_script( 'twiz-file-uploader', plugin_dir_url( __FILE__ ) . 'includes/import/client/fileuploader.js', array( 'jquery' ) ); 419 416 wp_enqueue_style('twiz-css-b', plugins_url('includes/import/client/fileuploader.css', __FILE__ )); 417 418 // Admin Ajax script 419 wp_enqueue_script( 'twiz-ajax-request', plugin_dir_url( __FILE__ ) . 'twiz-ajax.js.php', array( 'jquery' ) ); 420 420 } 421 421
Note: See TracChangeset
for help on using the changeset viewer.