From 58f7376fea08be493ee1536474052a5cd38a07f4 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Tue, 15 Jul 2014 23:34:01 +0500 Subject: [PATCH] update --- html5/verto/demo/verto.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/html5/verto/demo/verto.js b/html5/verto/demo/verto.js index 65d23bb03c..a39dc991ec 100644 --- a/html5/verto/demo/verto.js +++ b/html5/verto/demo/verto.js @@ -371,8 +371,10 @@ $(document).ready(function() { if (window.location.hash) { var hash = window.location.hash.substring(1); - $("#ext").val(hash); - $("#callbtn").trigger("click"); + if (hash && !hash.contains("page-")) { + $("#ext").val(hash); + $("#callbtn").trigger("click"); + } } });