Skip to content

Commit

Permalink
author added
Browse files Browse the repository at this point in the history
  • Loading branch information
lev-savranskiy committed Oct 13, 2016
1 parent 6ef5ede commit d587dc5
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
9 changes: 9 additions & 0 deletions components/lsGrid/lsGrid.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
/**
* Simple AngularJS grid
* @name lsGrid
* @author https://github.com/lev-savranskiy
* @version 0.1
* @category AngularJS plugin
* @example http://wap7.ru/folio/angular-ls-grid
*/

angular.module('lsGrid', [ 'ui.bootstrap.pagination', 'lsPager'])

.directive('lsGrid', ['$http', function($http) {
Expand Down
9 changes: 9 additions & 0 deletions components/lsPager/lsPager.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
/**
* Simple lsPager for ls-grid
* @name lsPager
* @author https://github.com/lev-savranskiy
* @version 0.1
* @category AngularJS plugin
* @example http://wap7.ru/folio/angular-ls-grid
*/

angular.module('lsPager', [])

.directive('lsPager', [ function () {
Expand Down
8 changes: 8 additions & 0 deletions lsGridDemo.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/**
* @name lsGrid usage examples
* @author https://github.com/lev-savranskiy
* @version 0.1
* @category AngularJS plugin
* @example http://wap7.ru/folio/angular-ls-grid
*/

var app = angular.module('app', ['lsGrid']);


Expand Down

0 comments on commit d587dc5

Please sign in to comment.