winbox icon indicating copy to clipboard operation
winbox copied to clipboard

Limit open windows?

Open MadTomT opened this issue 3 years ago • 1 comments

Hi Is it possible to limit how many winboxes can be open ? Is there a way to count them so I can only allow X open at a time ?

Thanks

MadTomT avatar May 02 '22 23:05 MadTomT

I've sorted this using jquery when adding a new window.

		if ( $('div[id^=winbox]').length  == 3 ) {
			console.log ( 'max open windows reached' )
			return false
		}

MadTomT avatar May 03 '22 08:05 MadTomT

You can use the winbox callback functions for this purpose.

ts-thomas avatar Aug 20 '22 12:08 ts-thomas