]> git.proxmox.com Git - mirror_xterm.js.git/commitdiff
Remove most `public` directives
authorParis <paris@sourcelair.com>
Wed, 6 Jul 2016 09:36:11 +0000 (12:36 +0300)
committerParis <paris@sourcelair.com>
Wed, 6 Jul 2016 09:36:11 +0000 (12:36 +0300)
src/xterm.js

index 0ffea96efc580d4dc021d16ec303be4d516640a0..6fab9d2cd054e9543c916fea823d2c2b41bbe28e 100644 (file)
                /**
                 *
                 * back_color_erase feature for xterm.
-                *
-                * @public
                 */
     Terminal.prototype.eraseAttr = function() {
       // if (this.is('screen')) return this.defAttr;
 
     /**
      * Focus the terminal. Delegates focus handling to the terminal's DOM element.
-     *
-     * @public
      */
     Terminal.prototype.focus = function() {
       return this.element.focus();
 
     /**
      * Blur the terminal. Delegates blur handling to the terminal's DOM element.
-     *
-     * @public
      */
     Terminal.prototype.blur = function() {
       return this.element.blur();
 
     /**
      * Initialize default behavior
-     *
-     * @public
      */
     Terminal.prototype.initGlobal = function() {
       Terminal.bindKeys(this);
      * Opens the terminal within an element.
      *
      * @param {HTMLElement} parent The element to create the terminal within.
-     * @public
      */
     Terminal.prototype.open = function(parent) {
       var self=this, i=0, div;
 
     /**
      * Destroys the terminal.
-     * @public
      */
     Terminal.prototype.destroy = function() {
       this.readable = false;
      *
      * @param {string} event The name of the event. TODO: Document all event types
      * @param {function} callback The function to call when the event is triggered.
-     *
-     * @public
      */
     Terminal.on = on;
     Terminal.off = off;