isite 2026.4.3 → 2026.4.4
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.
|
@@ -162,11 +162,15 @@ i-button {
|
|
|
162
162
|
display: contents;
|
|
163
163
|
}
|
|
164
164
|
i-button button {
|
|
165
|
+
padding: 5px !important;
|
|
165
166
|
margin: 5px !important;
|
|
166
167
|
margin-top: 30px !important;
|
|
167
|
-
padding: 7px 9px !important;
|
|
168
168
|
max-height: 40px;
|
|
169
169
|
}
|
|
170
|
+
i-button .label:not(:empty) {
|
|
171
|
+
padding-right: 5px;
|
|
172
|
+
|
|
173
|
+
}
|
|
170
174
|
table i-button button {
|
|
171
175
|
margin-top: 0px !important;
|
|
172
176
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
<button class="btn {{class}} {{class2}}" type="button" ng-click="onclick()" ng-disabled="busy">
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
<i ng-hide="busy || clickBusy" class="{{fa}}"></i>
|
|
3
|
+
<span ng-show="busy || clickBusy" class="spinner-border spinner-border-sm" role="status" aria-hidden="true"></span>
|
|
4
|
+
<strong class="label">{{label}}</strong>
|
|
6
5
|
</button>
|
package/lib/wsClient.js
CHANGED
|
@@ -29,6 +29,8 @@ module.exports = function init(____0) {
|
|
|
29
29
|
client.ws = new ____0.ws.lib(____0.ws.serverURL);
|
|
30
30
|
|
|
31
31
|
client.sendMessage = function (message) {
|
|
32
|
+
message = message || {};
|
|
33
|
+
message.clientID = client.id;
|
|
32
34
|
if (client.isAlive && client.ws && client.ws.readyState === ____0.ws.lib.OPEN) {
|
|
33
35
|
client.ws.send(JSON.stringify(message));
|
|
34
36
|
}
|