12345678910111213141516171819202122232425262728 |
- 'use strict';
- /*
- *+------------------------------------------------------------------------+
- *| Licensed Materials - Property of IBM
- *| IBM Cognos Products: Content Explorer
- *| (C) Copyright IBM Corp. 2018
- *|
- *| US Government Users Restricted Rights - Use, duplication or disclosure
- *| restricted by GSA ADP Schedule Contract with IBM Corp.
- *+------------------------------------------------------------------------+
- */
- define(['../../../lib/@waca/core-client/js/core-client/ui/core/Class'], function (BaseClass) {
- 'use strict';
- var ActionHandler = BaseClass.extend({
- /**
- * Menu item handler
- */
- onSelectItem: function onSelectItem(context) {
- var info = context.target.activeObject;
- info.translationService.startTranslationMode(info.selectedLocale);
- }
- });
- return ActionHandler;
- });
- //# sourceMappingURL=EditLanguageActionHandler.js.map
|