devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
20 lines (19 loc) • 545 B
JavaScript
/**
* DevExtreme (integration/angular/action_executors.js)
* Version: 18.2.18
* Build date: Tue Oct 18 2022
*
* Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
;
var Action = require("../../core/action");
Action.registerExecutor({
ngExpression: {
execute: function(e) {
if ("string" === typeof e.action) {
e.context.$eval(e.action)
}
}
}
});