DisplayOptionsMenuHandler.js 575 B

12345678910111213141516171819
  1. /*
  2. * Licensed Materials - Property of IBM
  3. *
  4. * IBM Cognos Products: Modeling UI
  5. *
  6. * Copyright IBM Corp. 2016
  7. *
  8. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  9. */
  10. define(['bi/glass/app/plugins/MenuActionInterface'], function(MenuActionInterface) {
  11. var Handler = MenuActionInterface.extend({
  12. isItemVisible: function(context) {
  13. return context.glassContext.currentAppView.currentContentView.context.rootStore.perspectiveStore.modellingTab === 'diagram';
  14. }
  15. });
  16. return Handler;
  17. });