Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
608bdebf
Commit
608bdebf
authored
Aug 28, 2015
by
webchick
Browse files
Issue
#2506447
by eiriksm, nod_: JSDoc content_translations module
parent
0e05f3b6
Changes
1
Hide whitespace changes
Inline
Side-by-side
core/modules/content_translation/content_translation.admin.js
View file @
608bdebf
...
...
@@ -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
'
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment