Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 520 Bytes

Readme.md

File metadata and controls

23 lines (14 loc) · 520 Bytes

Backbone-Pflock

Build status

Two way data bindings for Backbone models using Pflock.

Usage

Backbone-Pflock provides an adapter to use Backbone models with Pflock.

var adapter = require('backbone-pflock');
var model = new Backbone.Model({
    name: 'bla',
    description: 'anything'
});

var el = document.getElementById('model-root-node');

bind(el, model);