/* *+------------------------------------------------------------------------+ *| 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(['bacontentnav/common/ui/list_actions/DeleteAction'], function(DeleteAction) { 'use strict'; //NOSONAR var DeleteMyPortalPageAction = DeleteAction.extend({ isItemVisible: function(options) { var activeObject = options && options.target && options.target.activeObject; var resource = activeObject && activeObject.aSelectedContext && activeObject.aSelectedContext[0]; var type = resource && resource.type; return type === 'myPageletRef'; } }); return DeleteMyPortalPageAction; });