Browse Source

REFA: removing empty lines at begin of files (and doc if redundant)

dev-feat-component_preview
chris 2 months ago
parent
commit
6ff45892cb
  1. 2
      src/alignment.js
  2. 2
      src/arrangement.js
  3. 2
      src/baseComponents.js
  4. 2
      src/builder.js
  5. 2
      src/color.js
  6. 2
      src/commonEvents.js
  7. 3
      src/component/Component.js
  8. 2
      src/component/addStyleAndFunctions.js
  9. 3
      src/component/modifiableComponent.js
  10. 2
      src/component/wrapperComponent.js
  11. 3
      src/context.js
  12. 2
      src/context/extStore.js
  13. 2
      src/context/framework-controls.js
  14. 2
      src/context/scriptAndStyleContext.js
  15. 2
      src/context/webTrinity.js
  16. 2
      src/decorators/border.js
  17. 2
      src/decorators/dimensions.js
  18. 2
      src/decorators/shapes.js
  19. 1
      src/decorators/siding.js
  20. 6
      src/extensions/extension.js
  21. 1
      src/helper/twoDimPoint.js
  22. 2
      src/modifications/contextMenu.js
  23. 2
      src/modifications/dragAndDrop.js

2
src/alignment.js

@ -1,5 +1,3 @@
/** /**
* Enum providing common alignment rules * Enum providing common alignment rules
*/ */

2
src/arrangement.js

@ -1,5 +1,3 @@
/** /**
* Enum providing common alignment rules * Enum providing common alignment rules
*/ */

2
src/baseComponents.js

@ -1,5 +1,3 @@
/** /**
* Represents a Component (of an HTMLElement) that is capable of receiving input. * Represents a Component (of an HTMLElement) that is capable of receiving input.
* @extends Component * @extends Component

2
src/builder.js

@ -1,5 +1,3 @@
/** /**
* Method Collection with predefined HTMLElements * Method Collection with predefined HTMLElements
*/ */

2
src/color.js

@ -1,5 +1,3 @@
/** /**
* A simple Color class for rgb set color values. * A simple Color class for rgb set color values.
* *

2
src/commonEvents.js

@ -1,5 +1,3 @@
/** /**
* Enum to access common events * Enum to access common events
*/ */

3
src/component/Component.js

@ -1,6 +1,3 @@
/** /**
* Represents the most basic and simple form of a Component. * Represents the most basic and simple form of a Component.
* It is mainly a collection of wrapper methods * It is mainly a collection of wrapper methods

2
src/component/addStyleAndFunctions.js

@ -1,5 +1,3 @@
/** /**
* @inheritdoc * @inheritdoc
* @abstract * @abstract

3
src/component/modifiableComponent.js

@ -1,6 +1,3 @@
/** /**
* @inheritdoc * @inheritdoc
* @extends ChildbearerComponent * @extends ChildbearerComponent

2
src/component/wrapperComponent.js

@ -1,5 +1,3 @@
/** /**
* Represents the most basic and simple form of a Component. * Represents the most basic and simple form of a Component.
* It is mainly a collection of wrapper methods * It is mainly a collection of wrapper methods

3
src/context.js

@ -1,6 +1,3 @@
/** /**
* @todo Potentially class implementation could be removed entirely. * @todo Potentially class implementation could be removed entirely.
* Since it (at the time being) is only working as a singleton anyway. * Since it (at the time being) is only working as a singleton anyway.

2
src/context/extStore.js

@ -1,5 +1,3 @@
/** /**
* ESAggregation := Extensions Storage Aggregation (method) * ESAggregation := Extensions Storage Aggregation (method)
*/ */

2
src/context/framework-controls.js

@ -1,5 +1,3 @@
/** /**
* *
* @param {Array<CompelExtension>} extensions * @param {Array<CompelExtension>} extensions

2
src/context/scriptAndStyleContext.js

@ -1,5 +1,3 @@
/** /**
* @abstract * @abstract
* Class adds function and style storing properties to the context (PageBuilder). * Class adds function and style storing properties to the context (PageBuilder).

2
src/context/webTrinity.js

@ -1,5 +1,3 @@
/** /**
* Wenity := Web Trinity * Wenity := Web Trinity
*/ */

2
src/decorators/border.js

@ -1,5 +1,3 @@
/** /**
* *
*/ */

2
src/decorators/dimensions.js

@ -1,5 +1,3 @@
/** /**
* Simple Dimensions container for the height and width in pixels. * Simple Dimensions container for the height and width in pixels.
* *

2
src/decorators/shapes.js

@ -1,5 +1,3 @@
/** /**
* @extends DirectionUnitDependentAttribute * @extends DirectionUnitDependentAttribute
* @inheritdoc * @inheritdoc

1
src/decorators/siding.js

@ -1,4 +1,3 @@
/** /**
* Enum providing predefined set of Size-Units * Enum providing predefined set of Size-Units
*/ */

6
src/extensions/extension.js

@ -1,9 +1,3 @@
/**
* This file is part of the jps-like-websites lib
* URL: https://git.labos.goip.de/chris/jpc-like-websites
* @copyright by its creator Christian Martin
*/
/** /**
* Defines an extension that can be added to the jpclw-framework * Defines an extension that can be added to the jpclw-framework
*/ */

1
src/helper/twoDimPoint.js

@ -1,4 +1,3 @@
/** /**
* Class containing two numbers. * Class containing two numbers.
* Usually they represent coordinates, * Usually they represent coordinates,

2
src/modifications/contextMenu.js

@ -1,5 +1,3 @@
/** /**
* Default implementation of a contextmenu-behaviour * Default implementation of a contextmenu-behaviour
*/ */

2
src/modifications/dragAndDrop.js

@ -1,5 +1,3 @@
const EventDrag = Object.freeze({ const EventDrag = Object.freeze({
OVER: "over", OVER: "over",
START: "start", START: "start",

Loading…
Cancel
Save