1.0.1 • Published 7 years ago

handlebars-helper-selectif v1.0.1

Weekly downloads
2
License
ISC
Repository
github
Last release
7 years ago

handlebars-helper-selectif

A Handlebars helper for selecting an option in a dropdown input field, based on an equality check

Idea and template is from this helper module

Installation

Download node at nodejs.org and install it, if you haven't already.

npm install handlebars-helper-selectif --save

Usage

In your JavaScript file:

var express = require("express")
var hbs = require("hbs")
hbs.registerHelper("equal", require("handlebars-helper-selectif"))
var app = express()
app.set("view engine", "hbs")
// etc...

In your Handlebars template:

{{ selectif option value }}

Tests

npm install