JsViews: Data binding - compact linking API syntax

HTML:


...
    <td data-link="firstName"></td>
    <td>
        <input data-link="firstName" />
    </td>
...

Script:

// Compile template

$.templates( "personTmpl", "#personTmpl" );

// Render and link (compact syntax): data-link people to the
// details container, using the personTmpl template

$.link.personTmpl( "#details", people );