Moved i18n to utils

This commit is contained in:
Sam Potts
2018-08-13 21:39:16 +10:00
parent 059205c378
commit 297f297d18
5 changed files with 7 additions and 7 deletions

2
src/js/controls.js vendored
View File

@ -5,13 +5,13 @@
import captions from './captions';
import html5 from './html5';
import i18n from './i18n';
import support from './support';
import { repaint, transitionEndEvent } from './utils/animation';
import { dedupe } from './utils/arrays';
import browser from './utils/browser';
import { createElement, emptyElement, getAttributesFromSelector, getElement, getElements, hasClass, matches, removeElement, setAttributes, setFocus, toggleClass, toggleHidden } from './utils/elements';
import { off, on } from './utils/events';
import i18n from './utils/i18n';
import is from './utils/is';
import loadSprite from './utils/loadSprite';
import { extend } from './utils/objects';