You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
409 B
12 lines
409 B
// Copyright (c) Jupyter Development Team.
|
|
// Distributed under the terms of the Modified BSD License.
|
|
|
|
// TODO: Remove me in 6.0!
|
|
|
|
define([], function() {
|
|
console.warn(['Importing jquery and associated libraries, such as',
|
|
'bootstrap, is deprecated. This functionality will be remove in the',
|
|
'notebook 6.0 in favor of a fully loaded jQuery global'].join(' '));
|
|
return window.$;
|
|
});
|