From f584b42efe6a3b56641f8a30845b44f243c57a72 Mon Sep 17 00:00:00 2001 From: Vishal Gelani Date: Sat, 19 May 2018 21:12:59 +0530 Subject: [PATCH] Fixed coding standard issue. --- .../view/adminhtml/web/js/system/messages/popup.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/app/code/Magento/AdminNotification/view/adminhtml/web/js/system/messages/popup.js b/app/code/Magento/AdminNotification/view/adminhtml/web/js/system/messages/popup.js index 4463f3bee84ea..42b9fa144dc7a 100644 --- a/app/code/Magento/AdminNotification/view/adminhtml/web/js/system/messages/popup.js +++ b/app/code/Magento/AdminNotification/view/adminhtml/web/js/system/messages/popup.js @@ -4,9 +4,10 @@ */ define([ - "jquery", - "Magento_Ui/js/modal/modal" -], function($){ + 'jquery', + 'Magento_Ui/js/modal/modal' +], function ($) { + 'use strict'; return function (data, element) { @@ -21,4 +22,4 @@ define([ } this.modal.modal('openModal'); }; -}); \ No newline at end of file +});