summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE/client/bower_components/angular-smart-table/src/stSelectRow.js
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-portal-FE/client/bower_components/angular-smart-table/src/stSelectRow.js')
-rw-r--r--ecomp-portal-FE/client/bower_components/angular-smart-table/src/stSelectRow.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/ecomp-portal-FE/client/bower_components/angular-smart-table/src/stSelectRow.js b/ecomp-portal-FE/client/bower_components/angular-smart-table/src/stSelectRow.js
deleted file mode 100644
index 188408f8..00000000
--- a/ecomp-portal-FE/client/bower_components/angular-smart-table/src/stSelectRow.js
+++ /dev/null
@@ -1,26 +0,0 @@
-ng.module('smart-table')
- .directive('stSelectRow', ['stConfig', function (stConfig) {
- return {
- restrict: 'A',
- require: '^stTable',
- scope: {
- row: '=stSelectRow'
- },
- link: function (scope, element, attr, ctrl) {
- var mode = attr.stSelectMode || stConfig.select.mode;
- element.bind('click', function () {
- scope.$apply(function () {
- ctrl.select(scope.row, mode);
- });
- });
-
- scope.$watch('row.isSelected', function (newValue) {
- if (newValue === true) {
- element.addClass(stConfig.select.selectedClass);
- } else {
- element.removeClass(stConfig.select.selectedClass);
- }
- });
- }
- };
- }]);