diff --git a/3_about.html b/3_about.html index 1e7d7c5e..87491faf 100644 --- a/3_about.html +++ b/3_about.html @@ -68,7 +68,7 @@ permalink: /about/
Team

SCOPE SESSIONS are curated & realised by a team, that shares passion for visual arts, experimental crossovers of sound and video, multimedia experiences, human interactions and computer technologies.

-

We started in summer 2011 with our first session, developed in cooperation with and hosted by Atelier Überall.

+

We started in summer 2011 with our first session, developed in cooperation with and hosted by Atelier Überall (now Atelier Äuglein)

Since then we invited artists to share their unique approaches to an increasing audience. Hope you like it! See you at one of our sessions.

@@ -93,8 +93,8 @@ permalink: /about/
  • -

    Tobias Last aka Kiritan Flux -
    visualist, media artist

    +

    Tobias Last aka Kiritan Flux +
    visualist, media artist, developer

  • @@ -112,7 +112,6 @@ permalink: /about/
    Former team members and collaborators
  • diff --git a/css/custom.css b/css/custom.css index 1a75d301..2db4b394 100644 --- a/css/custom.css +++ b/css/custom.css @@ -164,6 +164,7 @@ a:hover { .event-date { text-align: right; margin-right: 10px; + width: 100%; } .artist-media { width: 100%; diff --git a/js/custom.js b/js/custom.js index dfb34e74..1060d5d8 100644 --- a/js/custom.js +++ b/js/custom.js @@ -1,3 +1,4 @@ +var DEBUG = false; var scrolling = false; var navigatorOpen = false; var topButtonVisible = false; @@ -35,7 +36,7 @@ $(document).ready(function() { }); function openTopMenu() { - console.log('openTopMenu'); + if (DEBUG) console.log('openTopMenu'); if (!scrolling && !navigatorOpen) { scrolling = true; $(".navigator").slideDown("slow", function() { @@ -46,7 +47,7 @@ $(document).ready(function() { } function closeTopMenu() { - console.log('closeTopMenu'); + if (DEBUG) console.log('closeTopMenu'); if (!scrolling && navigatorOpen) { scrolling = true; $('.navigator').slideUp("slow", function() { @@ -57,7 +58,7 @@ $(document).ready(function() { } function showTopButton() { - console.log('showTopButton'); + if (DEBUG) console.log('showTopButton'); if (!topButtonVisible) { $('.top-button').fadeTo("slow",1.0, function() { topButtonVisible = true; @@ -66,7 +67,7 @@ $(document).ready(function() { } function hideTopButton() { - console.log('hideTopButton'); + if (DEBUG) console.log('hideTopButton'); if (topButtonVisible) { $('.top-button').fadeTo("slow",0.0, function() { topButtonVisible = false; @@ -83,7 +84,7 @@ $(document).ready(function() { navbarHeight += $('.navigator').height() - 40; } - console.log('scroll ' + $(window).scrollTop() + ' ' + navbarHeight); + if (DEBUG) console.log('scroll ' + $(window).scrollTop() + ' ' + navbarHeight); if (!timeout) { timeout = setTimeout(function() { clearTimeout(timeout);