jenkins/src/main/js/pluginSetupWizard.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
436 B
JavaScript
Raw Normal View History

2020-01-10 20:37:52 +08:00
import $ from "jquery";
// This is the main module
2020-01-10 20:37:52 +08:00
import pluginSetupWizard from "./pluginSetupWizardGui";
// This entry point for the bundle only bootstraps the main module in a browser
$(function () {
$(".plugin-setup-wizard-container").each(function () {
var $container = $(this);
if ($container.children().length === 0) {
// this may get double-initialized
pluginSetupWizard.init($container);
}
});
});