Nobody needs a copyright in each file…

This commit is contained in:
Tobias Reich 2016-10-25 18:11:27 +02:00
parent 3a6c89ba87
commit 623325691f
21 changed files with 0 additions and 24 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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