From 5200bbdfb2921ba1d0dff21a62673079cf8fefc3 Mon Sep 17 00:00:00 2001 From: Zachary Sailer Date: Tue, 12 Jan 2021 14:02:31 -0800 Subject: [PATCH] Backport PR #5934: 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 0000000000..a8257009aa --- /dev/null +++ b/notebook/static/notebook/js/mathjaxutils.js @@ -0,0 +1,8 @@ + +define([ + 'base/js/mathjaxutils' +], function(mathjaxutils) { + "use strict" + + return mathjaxutils; +});