All Downloads are FREE. Search and download functionalities are using the official Maven repository.

webapp.pdf-exporter-admin.js.style-package-utils.js Maven / Gradle / Ivy

Go to download

This Polarion extension provides possibility to convert Polarion Documents to PDF files. This is an alternative to native Polarion's solution.

The newest version!
const StylePackageUtils = {
    adjustWeight: function (input) {
        let value = parseFloat(input.value); // Get the current value and convert to float

        // 1. If the number > 100, set the value to 100
        if (value > 100) {
            value = 100;
        }

        // 2. If the decimal part contains more than 1 cipher, round to 1 decimal
        if (value % 1 !== 0) { // Check if there's a decimal part
            value = parseFloat(value.toFixed(1)); // Round to 1 decimal place
        }

        // 3. If the number doesn't fit the pattern NNN.N, set the value to 50
        const regex = /^\d{1,3}(\.\d)?$/;
        if (!regex.test(value)) {
            value = 50;
        }

        // Set the modified value back to the input field
        input.value = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy