Front-end rewrite #275

This commit is contained in:
Tobias Reich 2014-11-20 23:30:33 +01:00
parent c849cf33a9
commit 1e8e0d9852
2 changed files with 455 additions and 457 deletions

BIN
dist/main.js vendored

Binary file not shown.

View File

@ -3,9 +3,9 @@
* @copyright 2014 by Tobias Reich * @copyright 2014 by Tobias Reich
*/ */
view = { view = {}
header: { view.header = {
show: function() { show: function() {
@ -92,9 +92,9 @@ view = {
} }
}, }
infobox: { view.infobox = {
show: function() { show: function() {
@ -111,9 +111,9 @@ view = {
} }
}, }
albums: { view.albums = {
init: function() { init: function() {
@ -206,9 +206,9 @@ view = {
} }
}, }
album: { view.album = {
init: function() { init: function() {
@ -364,9 +364,9 @@ view = {
} }
}, }
photo: { view.photo = {
init: function() { init: function() {
@ -491,5 +491,3 @@ view = {
} }
} }
};