bfg-common 1.5.946 → 1.5.947
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.
package/package.json
CHANGED
|
@@ -476,12 +476,13 @@ Application = $.spcExtend(wdi.DomainObject, {
|
|
|
476
476
|
this.lastMultimediaTime = Date.now();
|
|
477
477
|
},
|
|
478
478
|
|
|
479
|
-
sendShortcut: function(
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
479
|
+
sendShortcut: function(_shortcut) {
|
|
480
|
+
// DS-1075
|
|
481
|
+
// if(shortcut === wdi.keyShortcutsHandled.CTRLV) {
|
|
482
|
+
// this._sendCtrlKey(86);
|
|
483
|
+
// } else if(shortcut === wdi.keyShortcutsHandled.CTRLC) {
|
|
484
|
+
// this._sendCtrlKey(67);
|
|
485
|
+
// }
|
|
485
486
|
},
|
|
486
487
|
|
|
487
488
|
sendCtrlAltDelete: function() {
|
|
@@ -102,6 +102,7 @@ function start() {
|
|
|
102
102
|
|
|
103
103
|
$('#cancel-reconnect').css({ display: 'none' })
|
|
104
104
|
$('#reconnect').css({ display: 'none' })
|
|
105
|
+
clearTimeout(cancelReconnectionTimer)
|
|
105
106
|
} else if (action === 'windowResized') {
|
|
106
107
|
// Делаем выравнивание по центру
|
|
107
108
|
const { 0: width } = params
|