Remove unused dependencies from I18n and newsletter editor scripts

This commit is contained in:
Tautvidas Sipavičius
2017-01-09 22:23:25 +02:00
parent 43cb03105b
commit 76a41d53d6
2 changed files with 3 additions and 6 deletions

View File

@ -1,10 +1,8 @@
define('i18n', define('i18n',
[ [
'mailpoet', 'mailpoet'
'underscore',
], function( ], function(
MailPoet, MailPoet
_
) { ) {
'use strict'; 'use strict';

View File

@ -1,12 +1,11 @@
define([ define([
'backbone', 'backbone',
'backbone.marionette', 'backbone.marionette',
'backbone.supermodel',
'jquery', 'jquery',
'underscore', 'underscore',
'handlebars', 'handlebars',
'handlebars_helpers' 'handlebars_helpers'
], function(Backbone, Marionette, SuperModel, jQuery, _, Handlebars) { ], function(Backbone, Marionette, jQuery, _, Handlebars) {
var app = new Marionette.Application(), AppView; var app = new Marionette.Application(), AppView;