Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Max Mecklin / Moya

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • moya
  • ..
  • js
  • main.js
  • Ossi Pesonen's avatar
    Modified multiple XHTML files adding style classes to improve table layouts. · 7497cbf6
    Ossi Pesonen committed Jan 11, 2015
    7497cbf6
main.js 427 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/**
 * Created by ossi on 8.12.2014.
 */

$ = jQuery;

$(document).ready(function() {

   $('#open-user-login').click(function() {
        $('#not-logged').slideToggle(300);
        $(this).toggleClass('active');
   });

    $('#toggle-navigation').click(function() {
       $('#left-bar').slideToggle(300);
    });

    $('#show_advanced_search').click(function() {
        $('#advancedSearch').slideToggle(300);
    });

 });