From 20b89a97dace6d3d428ad50b522d037ac658b678 Mon Sep 17 00:00:00 2001 From: Kai Hendry Date: Sun, 12 Aug 2012 15:20:21 +0200 Subject: [PATCH] Safari whilst offline has a problem with query URLs now --- main.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.js b/main.js index f098751..119f01a 100644 --- a/main.js +++ b/main.js @@ -55,7 +55,8 @@ $(document).ready(function() { $("input[type=search]").change(function() { query = this.value; - window.location.search = query; // Triggers Reload the page to get source for: http://greptweet/u/kaihendry/?food + // Still a bug dispite FALLBACK in Appcache whereby Safari on Iphone gives an error message + //window.location.search = query; // Triggers Reload the page to get source for: http://greptweet/u/kaihendry/?food grep(query); });