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 = $scope.class = 'btn-light';
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
- if ($scope.class2) {
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
@@ -20,6 +20,7 @@ module.exports = function init(req, res, ____0, callback) {
20
20
  req.features.push('site.dynamic');
21
21
  }
22
22
  req.features.push('ip.' + req.ip);
23
+ req.features.push('url.' + req.url);
23
24
 
24
25
  if (req.host) {
25
26
  req.features.push('host.' + req.host);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isite",
3
- "version": "2025.11.03",
3
+ "version": "2025.12.01",
4
4
  "description": "Create High Level Multi-Language Web Site [Fast and Easy] ",
5
5
  "main": "index.js",
6
6
  "repository": {