ng-grid
Version:
__Contributors:__
14 lines (13 loc) • 402 B
JavaScript
ngGridLayoutPlugin = function() {
var self = this;
this.grid = null;
this.scope = null;
this.init = function(scope, grid, services) {
self.domUtilityService = services.DomUtilityService;
self.grid = grid;
self.scope = scope;
};
this.updateGridLayout = function() {
self.domUtilityService.RebuildGrid(self.scope, self.grid);
};
}