Start a new discussion

To start a new discussion please visit the discussions section of the GitHub home page of the project.

Discussions on GitHub

You can also search our old self-hosted forums for any useful information below but please note that posting new content here is not possible any more.

Re: Getting it to work out of Iframes

Home Forums Older releases 0.9.x Getting it to work out of Iframes Re: Getting it to work out of Iframes

#1598
admin
Keymaster

You need to remove the following code from the pages now that you don’t use iframes:

$(function() {
	$('#main-menu').bind('select.smapi', function(e, item) {
		var iframe2 = parent.document.getElementById('iframe2');
		if (iframe2) {
			iframe2.src = item.href;
		}
		return false;
	});
});

Cheers!