Reputation: 4199
I am trying to find a way to remove popout/expand icon from my salesforce softphone in Utility bar. The right-most icon in below attached screenshot.
Following are available methods to access CTI application, some of which can be used to change title, icon, width, height etc of softphone but there is not method to remove expand icon, nor there is ant in App setup page.
Upvotes: 0
Views: 409
Reputation: 371
You should be able to hide/disable that popout icon by adding this attribute to the lightning component: <aura:attribute name="supportsPopOut" type="Boolean" default="false" />
or by calling the javascript method disableUtilityPopOut();
Upvotes: 0