about summary refs log tree commit diff
path: root/app/views
diff options
context:
space:
mode:
authorAkihiko Odaki <akihiko.odaki.4i@stu.hosei.ac.jp>2017-05-16 03:20:10 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-05-15 20:20:10 +0200
commit85c9496340668ad2ebd04eea57d669f82b7dbaf1 (patch)
treee8c8ec78c00b56af36de0aec70221f4b9f323597 /app/views
parent6ee3a10f1732c6f7fd22a051c78868bf88fecdac (diff)
Introduce common JavaScript file (#2981)
* Create common chunk rather than vendor chunk

vendor chunk is a set of modules provided by external vendors, but now we
can have a chunk as a set of modules shared by multiple entry points,
which could be more efficent than having vendor chunk.

* Start rails-ujs in common.js

This is used by /settings/two_factor_authentication.
Diffstat (limited to 'app/views')
-rwxr-xr-xapp/views/layouts/application.html.haml3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/views/layouts/application.html.haml b/app/views/layouts/application.html.haml
index 73fab9a5c..21590ae3c 100755
--- a/app/views/layouts/application.html.haml
+++ b/app/views/layouts/application.html.haml
@@ -18,9 +18,8 @@
         = ' - '
       = title
 
-    = stylesheet_pack_tag 'vendor', media: 'all'
     = stylesheet_pack_tag 'application', media: 'all'
-    = javascript_pack_tag 'vendor', integrity: true, crossorigin: 'anonymous'
+    = javascript_pack_tag 'common', integrity: true, crossorigin: 'anonymous'
     = csrf_meta_tags
 
     = yield :header_tags