91 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			91 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!doctype html>
 | 
						|
<html lang="en">
 | 
						|
 | 
						|
	<head>
 | 
						|
		<meta charset="utf-8">
 | 
						|
 | 
						|
		<title>reveal.js - Test Iframes</title>
 | 
						|
 | 
						|
		<link rel="stylesheet" href="../dist/reveal.css">
 | 
						|
		<link rel="stylesheet" href="qunit-2.5.0.css">
 | 
						|
		<script src="qunit-2.5.0.js"></script>
 | 
						|
	</head>
 | 
						|
 | 
						|
	<body style="overflow: auto;">
 | 
						|
 | 
						|
		<div id="qunit"></div>
 | 
						|
		<div id="qunit-fixture"></div>
 | 
						|
 | 
						|
		<div class="deck1">
 | 
						|
			<div class="reveal" style="display: none;">
 | 
						|
				<div class="slides">
 | 
						|
					<section>1.1</section>
 | 
						|
					<section>1.2</section>
 | 
						|
					<section>1.3</section>
 | 
						|
				</div>
 | 
						|
			</div>
 | 
						|
		</div>
 | 
						|
 | 
						|
		<div class="deck2">
 | 
						|
			<div class="reveal" style="display: none;">
 | 
						|
				<div class="slides">
 | 
						|
					<section>2.1</section>
 | 
						|
					<section>2.2</section>
 | 
						|
					<section>2.3</section>
 | 
						|
				</div>
 | 
						|
			</div>
 | 
						|
		</div>
 | 
						|
 | 
						|
		<script type="module">
 | 
						|
 | 
						|
			import Reveal from '../dist/reveal.js';
 | 
						|
			import zoom from '../plugin/zoom/zoom.js';
 | 
						|
 | 
						|
			QUnit.module( 'Multiple reveal.js instances' );
 | 
						|
 | 
						|
			let r1 = new Reveal( document.querySelector( '.deck1 .reveal' ), {
 | 
						|
				embedded: true,
 | 
						|
				keyboard: true,
 | 
						|
				plugins: [zoom()]
 | 
						|
			} );
 | 
						|
			r1.initialize();
 | 
						|
 | 
						|
			let r2 = new Reveal( document.querySelector( '.deck2 .reveal' ), {
 | 
						|
				embedded: true,
 | 
						|
				keyboard: false
 | 
						|
			} );
 | 
						|
			r2.initialize();
 | 
						|
 | 
						|
			QUnit.test( 'Can make independent changes', function( assert ) {
 | 
						|
 | 
						|
				r1.slide(1);
 | 
						|
				r2.slide(2);
 | 
						|
				assert.strictEqual( r1.getCurrentSlide().textContent, '1.2' );
 | 
						|
				assert.strictEqual( r2.getCurrentSlide().textContent, '2.3' );
 | 
						|
 | 
						|
				r2.toggleOverview( true );
 | 
						|
				assert.strictEqual( r1.isOverview(), false );
 | 
						|
				assert.strictEqual( r2.isOverview(), true );
 | 
						|
				r2.toggleOverview( false );
 | 
						|
 | 
						|
				assert.strictEqual( r1.getConfig().keyboard, true );
 | 
						|
				assert.strictEqual( r2.getConfig().keyboard, false );
 | 
						|
 | 
						|
			});
 | 
						|
 | 
						|
			QUnit.test( 'Can register plugins independently', function( assert ) {
 | 
						|
 | 
						|
				assert.ok( r1.hasPlugin( 'zoom' ) );
 | 
						|
				assert.notOk( r2.hasPlugin( 'zoom' ) );
 | 
						|
 | 
						|
			});
 | 
						|
 | 
						|
		</script>
 | 
						|
		<script>
 | 
						|
			QUnit.test( 'Reveal does not leak to window', function( assert ) {
 | 
						|
				assert.strictEqual( window.Reveal, undefined );
 | 
						|
			});
 | 
						|
		</script>
 | 
						|
 | 
						|
	</body>
 | 
						|
</html>
 |