isite 2025.11.3 → 2025.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<button class="btn {{class}} {{class2}}" type="button" ng-click="onclick()" ng-disabled="busy">
|
|
2
|
-
<i class="{{fa}}"></i>
|
|
2
|
+
<i ng-hide="busy || clickBusy" class="{{fa}}"></i>
|
|
3
3
|
<span ng-show="busy || clickBusy" class="spinner-border spinner-border-sm" role="status" aria-hidden="true"></span>
|
|
4
4
|
{{label}}
|
|
5
5
|
|
|
@@ -231,7 +231,7 @@ app.directive('iButton', [
|
|
|
231
231
|
},
|
|
232
232
|
link: function ($scope, element, attrs, ctrl) {
|
|
233
233
|
$scope.type = $scope.type || '';
|
|
234
|
-
$scope.class =
|
|
234
|
+
$scope.class = 'btn-light';
|
|
235
235
|
$scope.fa = $scope.fa || $scope.label ? '' : 'fas fa-mouse-pointer';
|
|
236
236
|
|
|
237
237
|
if ($scope.type.like('*add*|*new*')) {
|
|
@@ -310,9 +310,7 @@ app.directive('iButton', [
|
|
|
310
310
|
if ($scope.type.like('*default*')) {
|
|
311
311
|
$scope.class = '';
|
|
312
312
|
}
|
|
313
|
-
|
|
314
|
-
$scope.class = $scope.class2;
|
|
315
|
-
}
|
|
313
|
+
|
|
316
314
|
$scope.onclick = function () {
|
|
317
315
|
$scope.clickBusy = true;
|
|
318
316
|
$timeout(() => {
|
package/lib/session.js
CHANGED