|
@@ -132,11 +132,11 @@ angular.module('luticateUtils').run(['$templateCache', function($templateCache)
|
132
|
132
|
$templateCache.put('/luticate/lutable.html',
|
133
|
133
|
' <lu-basic-table options="tableOptions"></lu-basic-table>' +
|
134
|
134
|
'<div class="col-sm-12">' +
|
135
|
|
-' <button class="btn btn-default" type="button" ng-click="deleteItems()"' +
|
|
135
|
+' <button class="btn btn-danger" type="button" ng-click="deleteItems()"' +
|
136
|
136
|
'ng-disabled="tableOptions.checkedItems.length == 0" ng-show="tableOptions.canDel()">' +
|
137
|
137
|
' <span class="glyphicon glyphicon-remove" aria-hidden="true"></span> Delete' +
|
138
|
138
|
' </button>' +
|
139
|
|
-' <button class="btn btn-default" type="button" ng-click="tableOptions.addItem()" ng-show="tableOptions.canAdd()">' +
|
|
139
|
+' <button class="btn btn-primary" type="button" ng-click="tableOptions.addItem()" ng-show="tableOptions.canAdd()">' +
|
140
|
140
|
' <span class="glyphicon glyphicon-plus" aria-hidden="true"></span> Add' +
|
141
|
141
|
' </button>' +
|
142
|
142
|
' </div>');
|