Issue #2506447 by eiriksm, nod_: JSDoc content_translations module
parent
0e05f3b6b1
commit
608bdebf20
|
@ -11,6 +11,9 @@
|
|||
* Forces applicable options to be checked as translatable.
|
||||
*
|
||||
* @type {Drupal~behavior}
|
||||
*
|
||||
* @prop {Drupal~behaviorAttach} attach
|
||||
* Attaches content translation dependent options to the UI.
|
||||
*/
|
||||
Drupal.behaviors.contentTranslationDependentOptions = {
|
||||
attach: function (context) {
|
||||
|
@ -75,11 +78,14 @@
|
|||
* Makes field translatability inherit bundle translatability.
|
||||
*
|
||||
* @type {Drupal~behavior}
|
||||
*
|
||||
* @prop {Drupal~behaviorAttach} attach
|
||||
* Attaches content translation behavior.
|
||||
*/
|
||||
Drupal.behaviors.contentTranslation = {
|
||||
attach: function (context) {
|
||||
// Initially hide all field rows for non translatable bundles and all column
|
||||
// rows for non translatable fields.
|
||||
// Initially hide all field rows for non translatable bundles and all
|
||||
// column rows for non translatable fields.
|
||||
$(context).find('table .bundle-settings .translatable :input').once('translation-entity-admin-hide').each(function () {
|
||||
var $input = $(this);
|
||||
var $bundleSettings = $input.closest('.bundle-settings');
|
||||
|
|
Loading…
Reference in New Issue