first commit
This commit is contained in:
@@ -0,0 +1,63 @@
|
||||
/*jshint browser:true, devel:true */
|
||||
/*global jQuery */
|
||||
var WPML_core = WPML_core || {};
|
||||
|
||||
jQuery(function () {
|
||||
jQuery(document).on('change', '#icl_menu_language', WPML_core.wp_nav_language_change);
|
||||
|
||||
});
|
||||
|
||||
WPML_core.wp_nav_language_change = function() {
|
||||
var thiss = jQuery(this);
|
||||
thiss.attr('disabled', 'disabled');
|
||||
var trid = jQuery('#icl_nav_menu_trid').val();
|
||||
data = {icl_wp_nav_menu_ajax:'translation_of', lang:jQuery(this).val(), trid:trid};
|
||||
jQuery.ajax({
|
||||
type: 'POST',
|
||||
data: data,
|
||||
url: location.href,
|
||||
success: function(res){
|
||||
jQuery('#icl_translation_of_wrap').html(res);
|
||||
thiss.prop('disabled', false);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
WPML_core.wp_nav_align_inputs = function() {
|
||||
|
||||
WPML_core.wp_nav_fix_spacing_for_wp45();
|
||||
|
||||
var inputs = ['#menu-name', '#icl_menu_language', '#icl_menu_translation_of'];
|
||||
|
||||
var right_max = 0;
|
||||
var element;
|
||||
var position;
|
||||
for (var i = 0; i < 3; i++) {
|
||||
element = jQuery(inputs[i]);
|
||||
if (element.length) {
|
||||
position = jQuery(inputs[i]).offset().left;
|
||||
if (position > right_max) {
|
||||
right_max = position;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for ( i= 0; i < 3; i++) {
|
||||
element = jQuery(inputs[i]);
|
||||
if (element.length) {
|
||||
position = jQuery(inputs[i]).offset().left;
|
||||
jQuery(inputs[i]).css('margin-left', right_max - position);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
WPML_core.wp_nav_fix_spacing_for_wp45 = function() {
|
||||
var wrapper = jQuery('#icl_menu_language').parent();
|
||||
if (wrapper.css('display') !== 'block') {
|
||||
wrapper.css({display: 'block'});
|
||||
}
|
||||
};
|
||||
|
||||
jQuery(function () {
|
||||
jQuery('#wpml-ls-menu-management').appendTo('#menu-settings-column').show();
|
||||
});
|
||||
Reference in New Issue
Block a user