/** * @file * A JavaScript file for the theme. * * In order for this JavaScript to be loaded on pages, see the instructions in * the README.txt next to this file. */ // JavaScript should be made compatible with libraries other than jQuery by // wrapping it with an "anonymous closure". See: // - https://drupal.org/node/1446420 // - http://www.adequatelygood.com/2010/3/JavaScript-Module-Pattern-In-Depth (function ($, Drupal, window, document, undefined) { //version 1 // To understand behaviors, see https://drupal.org/node/756722#behaviors Drupal.behaviors.my_descargas_behavior = { attach: function(context, settings) { /***** tomo la url del sitio ****/ pathArray = location.href.split( '/' ); protocol = pathArray[0]; host = pathArray[2]; baseurl = protocol + '//' + host; var $swich=true; $('.box-download').on('click', function(){ if ($swich){ $(this).find('.box-linkis').slideDown("slow"); $swich=false; }else{ $(this).find('.box-linkis').slideUp(); $swich=true; } }); if($(".page-soubory-ke-stazeni").length > 0){ var $loam = '
marca-birell
'; $(".page-soubory-ke-stazeni #content .view").before($loam); } }//cierro attach }; })(jQuery, Drupal, this, this.document);