Difference between revisions of "MediaWiki:Gadget-calculator-patients-patientInput.js"

From WikiAnesthesia
 
(4 intermediate revisions by the same user not shown)
Line 3: Line 3:
  */
  */
( function() {
( function() {
     var containerId = 'calculator-patientInput';
     mw.calculators.renderPatientInput = function() {
        if( mw.calculators.getOptionValue( 'patientinputinline' ) ) {
            return;
        }


    if( !$( '#' + containerId ).length ) {
         var containerId = 'calculator-patients-patientInput';
         var $container = $( '<div>', {
            id: containerId
        } );


         $container.addClass( 'container border-bottom px-0 py-1' );
         if( !$( '#' + containerId ).length ) {
            var inputs = [
                'weight',
                'height',
                'age',
                'gender'
            ];


        $container.append( mw.calculators.createInputGroup( [
            var $container = $( '<div>', {
            'weight',
                id: containerId
            'height',
             } );
            'age',
             'gender'
        ], true ) );


        $container.appendTo( $( '#contentHeader' ) );
            $container.addClass( 'container border-bottom px-0 py-1' );
     }
 
            $container.append( mw.calculators.createInputGroup( inputs, true, inputs.length ) );
 
            $container.appendTo( $( '#contentHeader' ) );
        }
     };
 
    mw.hook( 'calculators.initialized' ).add( mw.calculators.renderPatientInput );
}() );
}() );

Latest revision as of 21:59, 29 March 2022

/**
 * @author Chris Rishel
 */
( function() {
    mw.calculators.renderPatientInput = function() {
        if( mw.calculators.getOptionValue( 'patientinputinline' ) ) {
            return;
        }

        var containerId = 'calculator-patients-patientInput';

        if( !$( '#' + containerId ).length ) {
            var inputs = [
                'weight',
                'height',
                'age',
                'gender'
            ];

            var $container = $( '<div>', {
                id: containerId
            } );

            $container.addClass( 'container border-bottom px-0 py-1' );

            $container.append( mw.calculators.createInputGroup( inputs, true, inputs.length ) );

            $container.appendTo( $( '#contentHeader' ) );
        }
    };

    mw.hook( 'calculators.initialized' ).add( mw.calculators.renderPatientInput );
}() );