﻿// JavaScript Document
var lastKeyEvents = '';
$(function() {
	$(document).keydown(function(e) {
		lastKeyEvents = lastKeyEvents + '' + e.which;
		if (lastKeyEvents.length >= 12) {
			//lastKeyEvents = lastKeyEvents.substr(lastKeyEvents.length - 12);
			if (lastKeyEvents == '836983657713') {
				if (currentFAQId != 0)
					window.location.href = 'https://tic.hostfactory.ch/de/faq/edit.html?id='+currentFAQId;
				else
					window.location.href = 'https://tic.hostfactory.ch/de/faq/edit.html?categoryId='+currentCategoryId;
			}
		}
	});
});
