Browse Source

Nobody needs a copyright in each file…

Tobias Reich 7 years ago
parent
commit
623325691f

+ 0 - 1
src/scripts/album.js

@@ -1,6 +1,5 @@
 /**
  * @description Takes care of every action an album can handle and execute.
- * @copyright   2015 by Tobias Reich
  */
 
 album = {

+ 0 - 1
src/scripts/albums.js

@@ -1,6 +1,5 @@
 /**
  * @description Takes care of every action albums can handle and execute.
- * @copyright   2015 by Tobias Reich
  */
 
 albums = {

+ 0 - 1
src/scripts/api.js

@@ -1,6 +1,5 @@
 /**
  * @description This module communicates with Lychee's API
- * @copyright   2015 by Tobias Reich
  */
 
 api = {

+ 0 - 1
src/scripts/build.js

@@ -1,6 +1,5 @@
 /**
  * @description This module is used to generate HTML-Code.
- * @copyright   2015 by Tobias Reich
  */
 
 build = {}

+ 0 - 1
src/scripts/contextMenu.js

@@ -1,6 +1,5 @@
 /**
  * @description This module is used for the context menu.
- * @copyright   2015 by Tobias Reich
  */
 
 contextMenu = {}

+ 0 - 1
src/scripts/header.js

@@ -1,6 +1,5 @@
 /**
  * @description This module takes care of the header.
- * @copyright   2015 by Tobias Reich
  */
 
 header = {

+ 0 - 1
src/scripts/init.js

@@ -1,6 +1,5 @@
 /**
  * @description This module is used for bindings.
- * @copyright   2015 by Tobias Reich
  */
 
 $(document).ready(function() {

+ 0 - 1
src/scripts/loadingBar.js

@@ -1,6 +1,5 @@
 /**
  * @description This module is used to show and hide the loading bar.
- * @copyright   2015 by Tobias Reich
  */
 
 loadingBar = {

+ 0 - 1
src/scripts/lychee.js

@@ -1,6 +1,5 @@
 /**
  * @description This module provides the basic functions of Lychee.
- * @copyright   2015 by Tobias Reich
  */
 
 lychee = {

+ 0 - 1
src/scripts/multiselect.js

@@ -1,6 +1,5 @@
 /**
  * @description Select multiple albums or photos.
- * @copyright   2015 by Tobias Reich
  */
 
 multiselect = {}

+ 0 - 1
src/scripts/password.js

@@ -1,6 +1,5 @@
 /**
  * @description Controls the access to password-protected albums and photos.
- * @copyright   2015 by Tobias Reich
  */
 
 password = {

+ 0 - 1
src/scripts/photo.js

@@ -1,6 +1,5 @@
 /**
  * @description Takes care of every action a photo can handle and execute.
- * @copyright   2015 by Tobias Reich
  */
 
 photo = {

+ 0 - 1
src/scripts/search.js

@@ -1,6 +1,5 @@
 /**
  * @description Searches through your photos and albums.
- * @copyright   2015 by Tobias Reich
  */
 
 search = {

+ 0 - 1
src/scripts/settings.js

@@ -1,6 +1,5 @@
 /**
  * @description Lets you change settings.
- * @copyright   2015 by Tobias Reich
  */
 
 settings = {}

+ 0 - 1
src/scripts/sidebar.js

@@ -1,6 +1,5 @@
 /**
  * @description This module takes care of the sidebar.
- * @copyright   2015 by Tobias Reich
  */
 
 sidebar = {

+ 0 - 1
src/scripts/swipe.js

@@ -1,6 +1,5 @@
 /**
  * @description Swipes and moves an object.
- * @copyright   2015 by Tobias Reich
  */
 
 swipe = {

+ 0 - 1
src/scripts/upload.js

@@ -1,6 +1,5 @@
 /**
  * @description Takes care of every action an album can handle and execute.
- * @copyright   2015 by Tobias Reich
  */
 
 upload = {}

+ 0 - 1
src/scripts/view.js

@@ -1,6 +1,5 @@
 /**
  * @description Responsible to reflect data changes to the UI.
- * @copyright   2015 by Tobias Reich
  */
 
 view = {}

+ 0 - 1
src/scripts/view/main.js

@@ -1,6 +1,5 @@
 /**
  * @description Used to view single photos with view.php
- * @copyright   2015 by Tobias Reich
  */
 
 // Sub-implementation of lychee -------------------------------------------------------------- //

+ 0 - 1
src/scripts/visible.js

@@ -1,6 +1,5 @@
 /**
  * @description This module is used to check if elements are visible or not.
- * @copyright   2015 by Tobias Reich
  */
 
 visible = {}

+ 0 - 4
src/styles/main.scss

@@ -1,7 +1,3 @@
-/**
- * @copyright   2015 by Tobias Reich
- */
-
 // Functions --------------------------------------------------------------- //
 @function black($opacity) {
 	@return rgba(0, 0, 0, $opacity);