Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Website: Software management landing page #23961

Merged
merged 13 commits into from
Nov 20, 2024
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
module.exports = {


friendlyName: 'View vulnerability-management',
friendlyName: 'View software-management',


description: 'Display "Vulnerability management" page.',
description: 'Display "Software management" page.',


exits: {

success: {
viewTemplatePath: 'pages/vulnerability-management'
viewTemplatePath: 'pages/software-management'
},
badConfig: { responseType: 'badConfig' },
},
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
parasails.registerPage('vulnerability-management-page', {
parasails.registerPage('software-management-page', {
// ╦╔╗╔╦╔╦╗╦╔═╗╦ ╔═╗╔╦╗╔═╗╔╦╗╔═╗
// ║║║║║ ║ ║╠═╣║ ╚═╗ ║ ╠═╣ ║ ║╣
// ╩╝╚╝╩ ╩ ╩╩ ╩╩═╝ ╚═╝ ╩ ╩ ╩ ╩ ╚═╝
data: {
modal: undefined,
visibleFeature: 'mitigate-cves-automatically',
},

// ╦ ╦╔═╗╔═╗╔═╗╦ ╦╔═╗╦ ╔═╗
Expand All @@ -13,7 +14,15 @@ parasails.registerPage('vulnerability-management-page', {
//…
},
mounted: async function() {
//…
$('#heroCarousel').carousel({
interval: 5000,
});
$('#heroCarousel').on('slide.bs.carousel', (e)=>{
let toIndicatorElement = $('ol[purpose="carousel-indicators"] li')[e.to];
let fromIndicatorElement = $('ol[purpose="carousel-indicators"] li')[e.from];
$(toIndicatorElement).addClass('active');
$(fromIndicatorElement).removeClass('active');
});
},

// ╦╔╗╔╔╦╗╔═╗╦═╗╔═╗╔═╗╔╦╗╦╔═╗╔╗╔╔═╗
Expand Down
2 changes: 1 addition & 1 deletion website/assets/styles/importer.less
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
@import 'pages/endpoint-ops.less';
@import 'pages/transparency.less';
@import 'pages/press-kit.less';
@import 'pages/vulnerability-management.less';
@import 'pages/software-management.less';
@import 'pages/support.less';
@import 'pages/try-fleet/waitlist.less';
@import 'pages/admin/sandbox-waitlist.less';
Expand Down
Loading
Loading