Added helper for product options display
parent
18b8eaf8f5
commit
2f4929908d
5
app.js
5
app.js
|
@ -285,6 +285,11 @@ handlebars = handlebars.create({
|
||||||
return'<h3 class="text-success">Please retain the details above as a reference of payment</h3>';
|
return'<h3 class="text-success">Please retain the details above as a reference of payment</h3>';
|
||||||
}
|
}
|
||||||
return'';
|
return'';
|
||||||
|
},
|
||||||
|
upperFirst: (value) => {
|
||||||
|
return value.replace(/^\w/, (chr) => {
|
||||||
|
return chr.toUpperCase();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue