diff options
author | Nathaniel <catch@35733.no-reply.drupal.org> | 2011-11-01 12:32:15 +0900 |
---|---|---|
committer | Nathaniel <catch@35733.no-reply.drupal.org> | 2011-11-01 12:32:15 +0900 |
commit | 906a6db34707d27120dddd43a23f26f24153255d (patch) | |
tree | e9cdcb5b66f1e593d1321845757b489b4bac588d /core/modules/node/node.js | |
parent | f0a16bf2a4d1524aa33b656533e37d977cca4802 (diff) | |
download | drupal-906a6db34707d27120dddd43a23f26f24153255d.tar.gz drupal-906a6db34707d27120dddd43a23f26f24153255d.zip |
Revert "Issue #22336 by quicksketch, rfay, scor, Rob Loach, boombatower, tstoeckler, kbahey: Move all core Drupal files under a /core folder to improve usability and upgrades."
This reverts commit f0a16bf2a4d1524aa33b656533e37d977cca4802.
Diffstat (limited to 'core/modules/node/node.js')
-rw-r--r-- | core/modules/node/node.js | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/core/modules/node/node.js b/core/modules/node/node.js deleted file mode 100644 index ebf68eb3ba2..00000000000 --- a/core/modules/node/node.js +++ /dev/null @@ -1,43 +0,0 @@ - -(function ($) { - -Drupal.behaviors.nodeFieldsetSummaries = { - attach: function (context) { - $('fieldset.node-form-revision-information', context).drupalSetSummary(function (context) { - var revisionCheckbox = $('.form-item-revision input', context); - - // Return 'New revision' if the 'Create new revision' checkbox is checked, - // or if the checkbox doesn't exist, but the revision log does. For users - // without the "Administer content" permission the checkbox won't appear, - // but the revision log will if the content type is set to auto-revision. - if (revisionCheckbox.is(':checked') || (!revisionCheckbox.length && $('.form-item-log textarea', context).length)) { - return Drupal.t('New revision'); - } - - return Drupal.t('No revision'); - }); - - $('fieldset.node-form-author', context).drupalSetSummary(function (context) { - var name = $('.form-item-name input', context).val() || Drupal.settings.anonymous, - date = $('.form-item-date input', context).val(); - return date ? - Drupal.t('By @name on @date', { '@name': name, '@date': date }) : - Drupal.t('By @name', { '@name': name }); - }); - - $('fieldset.node-form-options', context).drupalSetSummary(function (context) { - var vals = []; - - $('input:checked', context).parent().each(function () { - vals.push(Drupal.checkPlain($.trim($(this).text()))); - }); - - if (!$('.form-item-status input', context).is(':checked')) { - vals.unshift(Drupal.t('Not published')); - } - return vals.join(', '); - }); - } -}; - -})(jQuery); |