Bugfixes
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
exports.__esModule = true;
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
module.exports = function (ActionAPI) {
|
||||
ActionAPI.handle(function (properties, status, deck) {
|
||||
var connectionID = properties.connectionID != undefined && properties.connectionID.length > 0
|
||||
@@ -10,7 +10,8 @@ module.exports = function (ActionAPI) {
|
||||
if (connection && connection.instance) {
|
||||
connection.instance
|
||||
.setTransitionSpeed(speed)
|
||||
.then(function () { return status("Transition speed has been set to " + speed); })["catch"](function (error) { return status(error, 'error'); });
|
||||
.then(function () { return status("Transition speed has been set to ".concat(speed)); })
|
||||
.catch(function (error) { return status(error, 'error'); });
|
||||
}
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user