mirror of
https://github.com/apache/superset.git
synced 2026-04-09 11:25:23 +00:00
* bumping the js libs * New linting rules * More linting * More * Done linting * npm >=4.5.0 * Bumping node * Tweaking the build * Fixing the damn build * Fixing the apps
22 lines
589 B
JavaScript
22 lines
589 B
JavaScript
/* eslint-disable global-require */
|
|
import $ from 'jquery';
|
|
|
|
const utils = require('./modules/utils');
|
|
|
|
$(document).ready(function () {
|
|
$(':checkbox[data-checkbox-api-prefix]').change(function () {
|
|
const $this = $(this);
|
|
const prefix = $this.data('checkbox-api-prefix');
|
|
const id = $this.attr('id');
|
|
utils.toggleCheckbox(prefix, '#' + id);
|
|
});
|
|
});
|
|
|
|
export function appSetup() {
|
|
// A set of hacks to allow apps to run within a FAB template
|
|
// this allows for the server side generated menus to function
|
|
window.$ = $;
|
|
window.jQuery = $;
|
|
require('bootstrap');
|
|
}
|