Update HtmlEditorField.Translatable.js

Should resolve Issue #214
This commit is contained in:
flxlabs 2016-02-04 14:42:11 +01:00 committed by Daniel Hensby
parent 1ad0d0b0a2
commit 7bfece9666
1 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@
// show language field for internal links
var linkType = this.find(':input[name=LinkType]:checked').val(), list = ['internal', 'external', 'file', 'email'];
if(linkType == 'internal') {
this.find('.field#Language').show();
this.find('.field.languagedropdown').show();
}
},
updateFromEditor: function() {
@ -30,10 +30,10 @@
$('form.htmleditorfield-linkform #Form_EditorToolbarLinkForm_Language').entwine({
onchange: function(e) {
// reload tree with selected locale
var treeDropdown = $(this).parents('form').find('#internal .treedropdown');
var treeDropdown = $(this).parents('form').find('#Form_EditorToolbarLinkForm_internal_Holder .TreeDropdownField');
treeDropdown.data('urlTree', $.path.addSearchParams(treeDropdown.data('urlTree').replace(/Locale=[^&]*/, ''), 'Locale='+$(this).val()));
treeDropdown.loadTree();
}
});
});
}(jQuery));
}(jQuery));