1 // ========================================================================== 2 // Project: Media Examples - A Media Playback sandbox. 3 // Copyright: ©2012 Michael Krotscheck and contributors. 4 // License: Licensed under MIT license (see license.js) 5 // ========================================================================== 6 /*globals MediaExamples */ 7 8 /** 9 * 10 * A small demonstration app that shows different ways of consuming media. Also 11 * a convenient testbed for those of us who are working on improving the media 12 * framework. 13 * 14 * @extends SC.Object 15 * @author Michael Krotscheck 16 */ 17 MediaExamples = SC.Application.create( 18 /** @scope MediaExamples.prototype */ 19 { 20 21 NAMESPACE: 'MediaExamples', 22 VERSION: '0.1.0', 23 24 init: function() { 25 sc_super(); 26 SC.ready(function() { 27 MediaExamples.main(); 28 }); 29 }, 30 31 main: function() { 32 this.getPath('mainPage.mainPane').append(); 33 } 34 }); 35