mirror of https://github.com/jenkinsci/jenkins.git
15 lines
436 B
JavaScript
15 lines
436 B
JavaScript
import $ from "jquery";
|
|
// This is the main module
|
|
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);
|
|
}
|
|
});
|
|
});
|