Sub Steps Names Pick & Delivery
Parameters sub steps names Pick and Delivery
Implementation
Available parameters
| Parameters lib | Parameters web | Description | 
|---|---|---|
| customStepsName.received | received | Parameter used to change the title of the Received substep (optional) - Default: Received | 
| customStepsName.picking | picking | Parameter used to change the title of the Picking substep  (optional) - Default: Picking | 
| customStepsName.goingToDestination | goingToDestination | Parameter used to change the title of the Going To Destination substep  (optional) - Default: Going To Destination | 
| customStepsName.delivered | delivered | Parameter used to change the title of the Delivered substep  (optional) - Default: Delivered | 
Code
<!DOCTYPE html>
<head>
    <title>LSW v3 Embed</title>
</head>
<body>
    <div id="instaleap-lsw-v3"></div>
</body>
<script src="https://xandar-lsw-v3.instaleap.io/lib/status.js"></script>
<script>
    const params = {
        job: "myJob",
        token: "myToken",
        container: "#instaleap-lsw-v3",
        customStepsName: {
            received: 'Recibimos tu orden',
            picking: 'En recoleccion',
            goingToDestination: 'En camino a tu casa',
            delivered: 'Te lo entregamos'
        }
    }
    window.instaleap.status.render(params)
</script>
</html>
https://xandar-lsw-v3.instaleap.io/status?job=myJob&token=myToken&received=text&picking=text&goingToDestination=text&delivered=text
Demo
NOTE: Please do not modify the Demo, this is a visual aid.
Updated 3 months ago
