123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- (function (Drupal) {
- 'use strict';
- Drupal.behaviors.reha = {
- attach: function (context, settings) {
- console.log('It works!');
- }
- };
-
- } (Drupal));
- jQuery(document).ready(function($){
-
-
- $(".bouton-contact").click(function(event) {
-
- if ($(".connexion-full").is(":visible")) {
- $(".connexion-full").slideUp();
- }
- if ($(".connected-full").is(":visible")) {
- $(".connected-full").slideUp();
- }
-
- $(".contacts-full").slideToggle();
- });
- $(".bouton-connexion").click(function(event) {
-
- if ($(".contacts-full").is(":visible")) {
- $(".contacts-full").slideUp();
- }
-
- $(".connexion-full").slideToggle();
- });
-
- $(".bouton-connected").click(function(event) {
-
- if ($(".contacts-full").is(":visible")) {
- $(".contacts-full").slideUp();
- }
-
- $(".connected-full").slideToggle();
- });
-
- $(".titre").click(function(event) {
- if ($(".connected-full").is(":visible")) {
- $(".connected-full").slideUp();
- }
- if ($(".contacts-full").is(":visible")) {
- $(".contacts-full").slideUp();
- }
- if ($(".connexion-full").is(":visible")) {
- $(".connexion-full").slideUp();
- }
-
-
- });
-
- $("#edit-field-dossier-de-candidature-0--label").click(function(event) {
- event.preventDefault();
-
- $("#edit-field-dossier-de-candidature-0--description>ul.main").slideToggle();
- });
-
-
-
-
-
-
-
-
-
- $(document).ready(function() {
-
- if (sessionStorage.getItem('asideOpened') === 'true') {
- $(".layout-sidebar-second").addClass('close');
- $("h2").addClass('__close');
- }
- $(".profile--type--collaborateur").click(function(event) {
-
- $(".layout-sidebar-second").addClass('close');
- $("h2").addClass('__close');
- sessionStorage.setItem('asideOpened', 'true');
- });
- $("#block-reha-views-block-current-user-doc-profile-block-1 > h2").click(function(event) {
-
- $(".layout-sidebar-second").removeClass('close');
- $("h2").removeClass('__close');
- sessionStorage.setItem('asideOpened', 'false');
- });
- });
- });
- (function($, window) {
- console.log('hello slick')
- $(document).ready(function(){
- $('.view-id-sites.view-display-id-block_1').slick({
- slidesToShow: 1,
-
- dots: false,
- arrows: true,
- centerMode: true,
- adaptiveHeight: true,
-
- responsive: [
- {
- breakpoint: 810,
- settings: {
- slidesToShow: 1,
- adaptiveHeight: true,
- arrows: false,
- draggable: true,
- centerMode: true,
- }
- }]
- });
- console.log('salut slick home');
- });
- $(document).ready(function(){
- $('.view-id-actus.view-display-id-block_1').slick({
- slidesToShow: 3,
-
- dots: false,
- arrows: true,
- centerMode: true,
-
- responsive: [
- {
- breakpoint: 810,
- settings: {
- slidesToShow: 1,
- adaptiveHeight: true,
- arrows: false,
- draggable: true,
- centerMode: true,
- }
- }]
- });
- console.log('slick actu');
- });
-
- $(document).ready(function(){
- $('.page-node-site .field--name-field-image .field__items').slick({
- slidesToShow: 1,
-
- dots: true,
- arrows: false,
-
- centerMode: true,
-
- responsive: [
- {
- breakpoint: 810,
- settings: {
- slidesToShow: 1,
- adaptiveHeight: true,
- arrows: false,
- draggable: true,
- centerMode: true,
- }
- }]
- });
- console.log('slick site');
- });
-
- function adjustAnchor() {
- var $anchor = $(window.location.hash);
- var fixedElementHeight = $('.block-region-first').outerHeight();
- if ($anchor.length > 0) {
- $('html, body').stop().animate({
- scrollTop: $anchor.offset().top - fixedElementHeight
- }, 0);
- }
- }
- if (window.location.hash) {
- adjustAnchor();
- }
- $(window).on('hashchange', function() {
- adjustAnchor();
- });
-
- jQuery(function($) {
-
- function setActiveLink() {
- var path = window.location.href;
- console.log(path);
- $(".layout__region--first .block-region-first li a").each(function() {
- if (this.href === path) {
- $(this).closest('a').addClass('active');
- }
- });
- }
-
- setActiveLink();
-
- $(".layout__region--first .block-region-first li a").on('click', function() {
- $(".layout__region--first .block-region-first li a").removeClass('active');
- $(this).addClass('active');
- });
- });
- })(jQuery, window);
|