HEX
Server: Apache/2.4.25 (Debian)
System: Linux server17 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
User: web37 (1062)
PHP: 7.4.30
Disabled: show_source, highlight_file, apache_child_terminate, apache_get_modules, apache_note, apache_setenv, virtual, dl, disk_total_space, posix_getpwnam, posix_getpwuid, posix_mkfifo, posix_mknod, posix_setpgid, posix_setsid, posix_setuid, posix_uname, proc_nice, openlog, syslog, pfsockopen
Upload Files
File: /var/www/web37/htdocs/sexnetzwerk24/wp-content/themes/classipress/includes/js/jquery.tinynav.js
/* 
 * http://tinynav.viljamis.com v1.1 by @viljamis
 * https://github.com/viljamis/TinyNav.js
 *
 * Licensed under the MIT license.
 *
 * Copyright (c) 2011-2012 Viljami Salminen, http://viljamis.com/
*/
/**
 * Forked by AppThemes on 01/15/2013
 */

(function ($, window, i) {
	$.fn.tinyNav = function (options) {

		// Default settings
		var settings = $.extend({
			'active' : 'selected', // String: Set the "active" class
			'header' : '', // String: Specify text for "header" and show header instead of the active item
			'header_href' : '', // String: Specify url for "header"
			'force_header' : false, // Force "header" regardless of "active" item
			'indent' : '-', // The indent character that shows the nesting of option elemenets.
			'label' : '', // String: sets the <label> text for the <select> (if not set, no label will be added)
			'excluded' : [],
		}, options);
	
		return this.each(function () {

			// Used for namespacing
			i++;

			var $nav = $(this),
				// Namespacing
				namespace = 'tinynav',
				namespace_i = namespace + i,
				l_namespace_i = '.l_' + namespace_i,
				$select = $('<select/>').attr("id", namespace_i).addClass(namespace + ' ' + namespace_i);

			var is_excluded = function( that ) {
				var key = '';
				for (key in settings.excluded) {
					if ( that.parents( settings.excluded[key] ).length == 1 ) { 
						return true;
					}
				}
				return false;
			}

			if ($nav.is('ul,ol')) {

				if (settings.header !== '') {
					if (settings.header_href !== '') {
						$select.append(
							$('<option/>').text(settings.header).val(settings.header_href)
						);
					} else {
						$select.append(
							$('<option/>').text(settings.header)
						);
					}
				}

				// Build options
				var options = '';

				$nav
					.addClass('l_' + namespace_i)
					.find('li > a')
					.each(function () {
						if( !is_excluded( $(this) ) ) {
							options += '<option value="' + $(this).attr('href') + '"';
							if ( $(this).parent('li').hasClass( settings.active ) ) {
								options += ' selected="selected" ';
							} 
							options += '>';
							var j;
							for (j = 0; j < $(this).parents('ul, ol').length - 1; j++) {
								options += settings.indent;
							}
							options += ' ' + $(this).text() + '</option>';
						}
					});

				// Append options into a select
				$select.append(options);

				// Change window location
				$select.change(function () {
					window.location.href = $(this).val();
				});

				// Inject select
				$(l_namespace_i).after($select);

				// Inject label
				if (settings.label) {
					$select.before(
						$("<label/>")
							.attr("for", namespace_i)
							.addClass(namespace + '_label ' + namespace_i + '_label')
							.append(settings.label)
					);
				}

			}

		});

	};
})(jQuery, this, 0);