##// END OF EJS Templates
Merge pull request #6188 from jasongrout/highlightjs-require-shim...
Matthias Bussonnier -
r17352:5f0794d0 merge
parent child Browse files
Show More
@@ -11,6 +11,7 define([
11 'services/sessions/js/session',
11 'services/sessions/js/session',
12 'notebook/js/celltoolbar',
12 'notebook/js/celltoolbar',
13 'components/marked/lib/marked',
13 'components/marked/lib/marked',
14 'highlight',
14 'notebook/js/mathjaxutils',
15 'notebook/js/mathjaxutils',
15 'base/js/keyboard',
16 'base/js/keyboard',
16 'notebook/js/tooltip',
17 'notebook/js/tooltip',
@@ -27,6 +28,7 define([
27 session,
28 session,
28 celltoolbar,
29 celltoolbar,
29 marked,
30 marked,
31 hljs,
30 mathjaxutils,
32 mathjaxutils,
31 keyboard,
33 keyboard,
32 tooltip,
34 tooltip,
@@ -27,6 +27,7
27 bootstraptour: 'components/bootstrap-tour/build/js/bootstrap-tour.min',
27 bootstraptour: 'components/bootstrap-tour/build/js/bootstrap-tour.min',
28 dateformat: 'dateformat/date.format',
28 dateformat: 'dateformat/date.format',
29 jqueryui: 'components/jquery-ui/ui/minified/jquery-ui.min',
29 jqueryui: 'components/jquery-ui/ui/minified/jquery-ui.min',
30 highlight: 'components/highlight.js/build/highlight.pack',
30 },
31 },
31 shim: {
32 shim: {
32 underscore: {
33 underscore: {
@@ -50,7 +51,10
50 jqueryui: {
51 jqueryui: {
51 deps: ["jquery"],
52 deps: ["jquery"],
52 exports: "$"
53 exports: "$"
53 }
54 },
55 highlight: {
56 exports: "hljs"
57 },
54 }
58 }
55 });
59 });
56 </script>
60 </script>
General Comments 0
You need to be logged in to leave comments. Login now