From 081bf777823d72d6ac12d7129ebea2e6a61d3d45 Mon Sep 17 00:00:00 2001 From: jekkos-t520 Date: Wed, 11 Feb 2015 14:29:57 +0100 Subject: [PATCH] Fix module hotkeys --- js/common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/common.js b/js/common.js index 6188eb91d..68ba35624 100644 --- a/js/common.js +++ b/js/common.js @@ -44,6 +44,6 @@ function http_s(url) //keylisteners $.each(['customers', 'items', 'reports', 'receivings', 'sales', 'employees', 'config', 'giftcards'], function(key, value) { $(window).jkey('f' + (key+1), function(){ - window.location = BASE_URL + '/' + value + ' /index'; + window.location = BASE_URL + '/' + value + '/index'; }); });