| 12345678910111213141516171819 |
- /**
- * DevExtreme (integration/angular/action_executors.js)
- * Version: 19.1.16
- * 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/
- */
- "use strict";
- var Action = require("../../core/action");
- Action.registerExecutor({
- ngExpression: {
- execute: function(e) {
- if ("string" === typeof e.action) {
- e.context.$eval(e.action)
- }
- }
- }
- });
|