Sha256: c729e2a1de6ab1b590baf286e4df3e3d3f9e3ab699e27af946eedf1c5c276195

Contents?: true

Size: 923 Bytes

Versions: 3

Compression:

Stored size: 923 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 */

/**
 * @class
 * 
 * (Document Your View Here)
 * 
 * @extends SC.View
 */
MediaExamples.MicrophoneView = SC.View.extend(
/** @scope MediaExamples.MicrophoneView.prototype */
{
  childViews: ['infoBox', 'labelView'],
  
  infoBox: MediaExamples.CapabilitiesView.extend({
    layout: {
      right: 10,
      top: 10,
      height: 200,
      width: 150
    }
  }),
  
  labelView: SC.LabelView.extend({
    tagName: "h1",
    layout: {
      top: 10,
      left: 10,
      bottom: 10,
      right: 170
    },
    value: "This feature is not yet supported"
  })

});

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
sproutcore-1.9.2 lib/frameworks/sproutcore/apps/media_examples/views/microphone_view.js
sproutcore-1.9.1 lib/frameworks/sproutcore/apps/media_examples/views/microphone_view.js
sproutcore-1.9.0 lib/frameworks/sproutcore/apps/media_examples/views/microphone_view.js