diff options
author | Nathaniel Catchpole <catch@35733.no-reply.drupal.org> | 2016-02-29 12:25:57 +0900 |
---|---|---|
committer | Nathaniel Catchpole <catch@35733.no-reply.drupal.org> | 2016-02-29 12:25:57 +0900 |
commit | 00606660c8166972c7f0128d39117b5a7be8bb7a (patch) | |
tree | 58966f2bafa42bcf8697f4e1a7013552c1e1e8dc /core/modules/comment/js | |
parent | 490397539c3112be7abead76d9a95be00aad2adb (diff) | |
download | drupal-00606660c8166972c7f0128d39117b5a7be8bb7a.tar.gz drupal-00606660c8166972c7f0128d39117b5a7be8bb7a.zip |
Issue #2672200 by Sweetchuck, gauravjeet: Wrap Drupal with closure variable
Diffstat (limited to 'core/modules/comment/js')
-rw-r--r-- | core/modules/comment/js/node-new-comments-link.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/modules/comment/js/node-new-comments-link.js b/core/modules/comment/js/node-new-comments-link.js index 54506d95c444..291bcbd11613 100644 --- a/core/modules/comment/js/node-new-comments-link.js +++ b/core/modules/comment/js/node-new-comments-link.js @@ -6,7 +6,7 @@ * installed. */ -(function ($, Drupal) { +(function ($, Drupal, drupalSettings) { 'use strict'; @@ -174,4 +174,4 @@ } } -})(jQuery, Drupal); +})(jQuery, Drupal, drupalSettings); |