sbin/res/jsdoc/app/test/inner.js
author hamidouk
Wed, 01 Feb 2012 14:19:32 +0100
branchpopcorn-port
changeset 758 7fdb2d92da58
parent 520 fe008e95a716
permissions -rw-r--r--
trigger the seeked signal after seeking because due to a bug in jwplayer, it's not triggered when the video was paused.

/**
 * @constructor
 */
function Outer() {
  /**
   * @constructor
   */
  function Inner(name) {
    /** The name of this. */
    this.name = name;
  }

  this.open = function(name) {
    return (new Inner(name));
  }
}