summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE/client/bower_components/angular-smart-table/src/smart-table.module.js
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-portal-FE/client/bower_components/angular-smart-table/src/smart-table.module.js')
-rw-r--r--ecomp-portal-FE/client/bower_components/angular-smart-table/src/smart-table.module.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/ecomp-portal-FE/client/bower_components/angular-smart-table/src/smart-table.module.js b/ecomp-portal-FE/client/bower_components/angular-smart-table/src/smart-table.module.js
new file mode 100644
index 00000000..6e8eaf55
--- /dev/null
+++ b/ecomp-portal-FE/client/bower_components/angular-smart-table/src/smart-table.module.js
@@ -0,0 +1,7 @@
+ng.module('smart-table', []).run(['$templateCache', function ($templateCache) {
+ $templateCache.put('template/smart-table/pagination.html',
+ '<nav ng-if="numPages && pages.length >= 2"><ul class="pagination">' +
+ '<li ng-repeat="page in pages" ng-class="{active: page==currentPage}"><a href="javascript: void(0);" ng-click="selectPage(page)">{{page}}</a></li>' +
+ '</ul></nav>');
+}]);
+