Skip to content

Commit

Permalink
prettify the code
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishekkumar08 authored and meganindya committed Feb 2, 2021
1 parent c285701 commit aafe16e
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions js/pastebox.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ const PASTEBOX =

/* exported PasteBox */
class PasteBox {

/**
* @constructor
*/
Expand All @@ -52,27 +51,27 @@ class PasteBox {

/**
* @public
* @param {Object} stage
* @param {Object} stage
* @returns {Object} createjs stage
*/
setStage(stage) {
this._stage = stage;
return this;
}

/**
* @public
* @param {Object} paste
* @returns {Object} paste
*/
/**
* @public
* @param {Object} paste
* @returns {Object} paste
*/
setPaste(paste) {
this._paste = paste;
return this;
}

/**
* @public
* @param {Object} refreshCanvas
* @param {Object} refreshCanvas
* @returns {Object} refreshCanvas
*/
setRefreshCanvas(refreshCanvas) {
Expand All @@ -96,7 +95,7 @@ class PasteBox {

/**
* @public
* @param {number} scale
* @param {number} scale
* @param {number} x coordinate
* @param {number} y coordinate
*/
Expand Down

0 comments on commit aafe16e

Please sign in to comment.