From 79a914dde999d4d47c8bb6f509e5447f1287a4a1 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Mon, 28 Jan 2013 03:38:08 +0400 Subject: [PATCH] added a 'real size' option for testing on devices... Signed-off-by: Alex A. Naanou --- index.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/index.html b/index.html index 0f2b44e..9b99ea3 100755 --- a/index.html +++ b/index.html @@ -352,6 +352,9 @@ $(document).ready(function(){
Drag in full page view:
+
+ Enable different size pages: +

NOTE: this is not an actual configuration page, just a live demo of some of the available configuration option effects. @@ -369,12 +372,14 @@ $(document).ready(function(){ FIT_PAGE_TO_VIEW = $('#FIT_PAGE_TO_VIEW').text() == 'true' ? true : false ANIMATE_WINDOW_RESIZE = $('#ANIMATE_WINDOW_RESIZE').text() == 'true' ? true : false DRAG_FULL_PAGE = $('#DRAG_FULL_PAGE').text() == 'true' ? true : false + _USE_REAL_SIZES = $('#_USE_REAL_SIZES').text() == 'true' ? true : false } function loadSettings(){ $('#PAGES_IN_RIBBON').attr('value', PAGES_IN_RIBBON) $('#FIT_PAGE_TO_VIEW').text(FIT_PAGE_TO_VIEW) $('#ANIMATE_WINDOW_RESIZE').text(ANIMATE_WINDOW_RESIZE) $('#DRAG_FULL_PAGE').text(DRAG_FULL_PAGE) + $('#_USE_REAL_SIZES').text(_USE_REAL_SIZES) } function toggleSetting(obj){ obj = $(obj)