Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Codecrew / Moya

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 30
  • Merge Requests 2
  • Wiki
  • Snippets
  • 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
    Added v2 template · 5225b308
    Ossi Pesonen committed Jan 10, 2015
    5225b308
main.js 217 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/**
 * Created by ossi on 8.12.2014.
 */

$ = jQuery;

$(document).ready(function() {

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

 });