diff --git a/public/js/extra.js b/public/js/extra.js
index 329aa153a..e133a8109 100644
--- a/public/js/extra.js
+++ b/public/js/extra.js
@@ -288,21 +288,25 @@ function finishView(view) {
}
});
//graphviz
- var graphvizs = view.find(".graphviz.raw").removeClass("raw");
- graphvizs.each(function (key, value) {
- try {
- var $value = $(value);
- var $ele = $(value).parent().parent();
+ require.ensure(["viz.js"], function(require) {
+ var Viz = require("viz.js");
+ var graphvizs = view.find(".graphviz.raw").removeClass("raw");
+ graphvizs.each(function (key, value) {
+ try {
+ var $value = $(value);
+ var $ele = $(value).parent().parent();
- var graphviz = Viz($value.text());
- $value.html(graphviz);
+ var graphviz = Viz($value.text());
+ $value.html(graphviz);
- $ele.addClass('graphviz');
- $value.children().unwrap().unwrap();
- } catch (err) {
- console.warn(err);
- }
- });
+ $ele.addClass('graphviz');
+ $value.children().unwrap().unwrap();
+ } catch (err) {
+ console.warn(err);
+ }
+ });
+
+ })
//mermaid
var mermaids = view.find(".mermaid.raw").removeClass("raw");
mermaids.each(function (key, value) {
diff --git a/public/js/index.js b/public/js/index.js
index 4bce2ff0b..2d3c29651 100644
--- a/public/js/index.js
+++ b/public/js/index.js
@@ -1,9 +1,3 @@
-/* include jquery ui */
-require('jquery-ui/ui/widgets/resizable');
-require('jquery-ui/ui/widgets/tooltip');
-require('jquery-ui/ui/widgets/controlgroup');
-require('jquery-ui/ui/widgets/autocomplete');
-
/* jquery and jquery plugins */
require('../vendor/showup/showup');
diff --git a/public/views/foot.ejs b/public/views/foot.ejs
index 4a9b1756b..adab9d15f 100644
--- a/public/views/foot.ejs
+++ b/public/views/foot.ejs
@@ -21,7 +21,7 @@
<% } %>
-
+
diff --git a/public/views/index.ejs b/public/views/index.ejs
index c7bea341f..c00623c6a 100644
--- a/public/views/index.ejs
+++ b/public/views/index.ejs
@@ -185,7 +185,7 @@
-
+
<% if(useCDN) { %>
diff --git a/public/views/pretty.ejs b/public/views/pretty.ejs
index 6f13155a3..4cfbdb044 100644
--- a/public/views/pretty.ejs
+++ b/public/views/pretty.ejs
@@ -90,7 +90,7 @@
<% } else { %>
-
+
diff --git a/public/views/slide.ejs b/public/views/slide.ejs
index b0c5ddbce..b3212f448 100644
--- a/public/views/slide.ejs
+++ b/public/views/slide.ejs
@@ -87,7 +87,7 @@
<% } else { %>
-
+
diff --git a/webpack.production.js b/webpack.production.js
index f4125cec2..1c54ae381 100644
--- a/webpack.production.js
+++ b/webpack.production.js
@@ -17,10 +17,11 @@ module.exports = Object.assign({}, baseConfig, {
}),
new ExtractTextPlugin("[name].css"),
new webpack.optimize.CommonsChunkPlugin({
- name: "vendor",
- filename: "vendor.bundle.js",
- minChunks: Infinity,
- }),
+ name: ["vendor", "public", "slide", "locale"],
+ async: true,
+ filename: '[name].js',
+ minChunks: Infinity
+ })
new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': JSON.stringify('production')
diff --git a/webpackBaseConfig.js b/webpackBaseConfig.js
index 6d99381cc..e2d58f4df 100644
--- a/webpackBaseConfig.js
+++ b/webpackBaseConfig.js
@@ -17,9 +17,10 @@ module.exports = {
}),
new ExtractTextPlugin("[name].css"),
new webpack.optimize.CommonsChunkPlugin({
- name: "vendor",
- filename: "vendor.bundle.js",
- minChunks: Infinity,
+ name: ["vendor", "public", "slide", "locale"],
+ async: true,
+ filename: '[name].js',
+ minChunks: Infinity
})
],
@@ -33,9 +34,12 @@ module.exports = {
"jquery-textcomplete",
"jquery-mousewheel",
"jquery-scrollspy/jquery-scrollspy",
+ "jquery-ui/ui/widgets/resizable",
+ "jquery-ui/ui/widgets/tooltip",
+ "jquery-ui/ui/widgets/controlgroup",
+ "jquery-ui/ui/widgets/autocomplete",
"expose?LZString!lz-string",
"expose?filterXSS!xss",
- "expose?Viz!viz.js",
"js-url",
"bootstrap"
]
@@ -43,6 +47,7 @@ module.exports = {
output: {
path: path.join(__dirname, 'public/build'),
+ publicPath: '/build/',
filename: '[name].js'
},
@@ -51,10 +56,7 @@ module.exports = {
path.resolve(__dirname, 'src'),
path.resolve(__dirname, 'node_modules')
],
- extensions: ["", ".js"],
- alias: {
- 'jquery-ui': 'jquery-ui/ui/widgets'
- }
+ extensions: ["", ".js"]
},
module: {