UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

24 lines (23 loc) 692 B
/** * DevExtreme (esm/ui/scheduler/publisher_mixin.js) * Version: 21.2.4 * Build date: Mon Dec 06 2021 * * Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ var publisherMixin = { notifyObserver: function(subject, args) { var observer = this.option("observer"); if (observer) { observer.fire(subject, args) } }, invoke: function() { var observer = this.option("observer"); if (observer) { return observer.fire.apply(observer, arguments) } } }; export default publisherMixin;