Skip to content
This repository has been archived by the owner on Sep 3, 2022. It is now read-only.

Commit

Permalink
Fixes jquery-ui import for 'edit' page (#2139)
Browse files Browse the repository at this point in the history
  • Loading branch information
rileyjbauer authored Jun 3, 2019
1 parent 98f546d commit 92f68ce
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions sources/web/datalab/templates/edit.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,19 +71,16 @@
<script>
requirejs.config({
baseUrl: '<%baseUrl%>static/',
shim: {
jqueryui: {
deps: ["jquery"],
exports: "$"
}
}
});
requirejs.config({
map: {
'*': {
'contents': 'services/contents',
}
}
map: {
'*': {
'contents': 'services/contents',
}
},
paths: {
'jquery-ui': 'components/jquery-ui/ui/minified/jquery-ui.min',
},
});
window.datalab = {};

Expand Down

0 comments on commit 92f68ce

Please sign in to comment.