gsouf/zero-table

View on GitHub
src/ZeroTable/TableEvent.js

Summary

Maintainability
A
0 mins
Test Coverage
ZeroTable.TableEvent = function(table, properties){
    var self = this;
    ZeroTable.foreach(properties, function(v, k){
        self[k] = v;
    });
    this.tableInstance = table;
};