From e67c331a4e1c1cf7f37b7960f730bdab21dfb534 Mon Sep 17 00:00:00 2001 From: Kevin Bates Date: Tue, 12 Jan 2021 11:52:28 -0800 Subject: [PATCH] Add shim to mathjaxutils.js --- notebook/static/notebook/js/mathjaxutils.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 notebook/static/notebook/js/mathjaxutils.js diff --git a/notebook/static/notebook/js/mathjaxutils.js b/notebook/static/notebook/js/mathjaxutils.js new file mode 100644 index 000000000..a8257009a --- /dev/null +++ b/notebook/static/notebook/js/mathjaxutils.js @@ -0,0 +1,8 @@ + +define([ + 'base/js/mathjaxutils' +], function(mathjaxutils) { + "use strict" + + return mathjaxutils; +});