Sha256: 109734c6f1c8d0094aa990b71e87819729b08452133a47e5d35a6bb09cedcb12
Contents?: true
Size: 909 Bytes
Versions: 11
Compression:
Stored size: 909 Bytes
Contents
// ========================================================================== // Project: Media Examples - A Media Playback sandbox. // Copyright: ©2012 Michael Krotscheck and contributors. // License: Licensed under MIT license (see license.js) // ========================================================================== /*globals MediaExamples */ /** * * A small demonstration app that shows different ways of consuming media. Also * a convenient testbed for those of us who are working on improving the media * framework. * * @extends SC.Object * @author Michael Krotscheck */ MediaExamples = SC.Application.create( /** @scope MediaExamples.prototype */ { NAMESPACE: 'MediaExamples', VERSION: '0.1.0', init: function() { sc_super(); SC.ready(function() { MediaExamples.main(); }); }, main: function() { this.getPath('mainPage.mainPane').append(); } });
Version data entries
11 entries across 11 versions & 1 rubygems