Our website use cookies to improve and personalise your experience and to display advertisements (if any). Our website may also include cookies from third parties like Google Adsense, Google Analytics, Youtube. By using the website, you consent to the use of cookies.

Blog Post

Multiple Launch Prevention in Citrix Receiver for Web

One of the frequently asked questions for Receiver for Web is multiple launch prevention. This is supported in Receiver for Web. When you click on an application or desktop icon to launch it, a spinner is displayed and any clicks on the same icon are ignored while the spinner is spinning. Hence user cannot unintentionally launch multiple instances of the same application/desktop. Out of the box, the time period for the spinner is fixed for three seconds.

In StoreFront 2.5, this can be modified by a simple customization. Just insert the following code snippet into custom.script.js in the contrib folder under the Receiver for Web site:

$(document).ready(function() {
     CTXS.Resources.multiClickTimeout = 10;
});

This code snippet changes the duration to 10 seconds. You should alter the number according to your requirement.

Source:Feng Huang (Citrix Blog)

Related Posts