diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2019-01-16 17:03:40 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-01-16 17:03:40 +0100 |
commit | d9b32726a07eeca41ac5f4dce06dc6ff419d9de7 (patch) | |
tree | e57fd63b2d8eba161b9adb6369f64de335dff254 /core/js/merged-share-backend.js | |
parent | cff89c2a44336424121de72640334d3c00878523 (diff) | |
download | nextcloud-server-d9b32726a07eeca41ac5f4dce06dc6ff419d9de7.tar.gz nextcloud-server-d9b32726a07eeca41ac5f4dce06dc6ff419d9de7.zip |
Use import instead of require
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'core/js/merged-share-backend.js')
-rw-r--r-- | core/js/merged-share-backend.js | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/core/js/merged-share-backend.js b/core/js/merged-share-backend.js index c4cf17d9c6b..a27bae9aa2d 100644 --- a/core/js/merged-share-backend.js +++ b/core/js/merged-share-backend.js @@ -1,9 +1,9 @@ -require('./shareconfigmodel.js') -require('./sharetemplates.js') -require('./shareitemmodel.js') -require('./sharesocialmanager.js') -require('./sharedialogresharerinfoview.js') -require('./sharedialoglinkshareview.js') -require('./sharedialogshareelistview.js') -require('./sharedialogview.js') -require('./share.js') +import './shareconfigmodel.js'; +import './sharetemplates.js'; +import './shareitemmodel.js'; +import './sharesocialmanager.js'; +import './sharedialogresharerinfoview.js'; +import './sharedialoglinkshareview.js'; +import './sharedialogshareelistview.js'; +import './sharedialogview.js'; +import './share.js'; |