$current = $hidden;
if ($(this).hasClass('load-menu') && !menu_loaded) {
$.ajax({
- url: '/katalog/',
+ url: '/katalog/' + LANGUAGE_CODE + '.json',
dataType: "json",
}).done(function(data) {
$.each(data, function(index, value) {
- $('#menu-' + index).html(value);
+ var $menuitem = $('#menu-' + index);
+ $menuitem.html(value);
+ var $minisearch = $("<input class='mini-search' style='margin-bottom: 1em' />");
+ $minisearch.keyup(function() {
+ var s = $(this).val().toLowerCase();
+ if (s) {
+ $("li", $menuitem).each(function() {
+ if ($("a", this).text().toLowerCase().indexOf(s) != -1)
+ $(this).show();
+ else $(this).hide();
+ });
+ }
+ else {
+ $("li", $menuitem).css("display", "");
+ }
+ });
+ $menuitem.prepend($minisearch);
});
menu_loaded = true;
});
}
});
});
+ /* this kinda breaks the whole page. */
$('body').click(function(e) {
if ($current == null) return;
var p = $(e.target);
while (p.length) {
if (p == $current)
return;
- if (p.hasClass('hidden-box-trigger'))
+ if (p.hasClass('hidden-box-trigger')
+ || p.hasClass('simple-toggler')
+ || p.hasClass('mini-search'))
return;
p = p.parent();
}
$(function(){
$("#search").search();});
+ $('body').on('click', '.simple-toggler' , function(ev) {
+ ev.preventDefault();
+ var scope = $(this).closest('.simple-toggler-scope');
+ scope.find('.simple-hidden-box').each(function(){
+ var $this = $(this);
+ if ($this.is(':hidden')) {
+ $this.show();
+ } else {
+ $this.hide();
+ }
+ });
+ });
+
});
})(jQuery);