View Single Post
Old 02-13-2012, 08:18 AM   #3373
quisvir
Addict
quisvir is kind to children and small, furry animalsquisvir is kind to children and small, furry animalsquisvir is kind to children and small, furry animalsquisvir is kind to children and small, furry animalsquisvir is kind to children and small, furry animalsquisvir is kind to children and small, furry animalsquisvir is kind to children and small, furry animalsquisvir is kind to children and small, furry animalsquisvir is kind to children and small, furry animalsquisvir is kind to children and small, furry animalsquisvir is kind to children and small, furry animals
 
quisvir's Avatar
 
Posts: 238
Karma: 6875
Join Date: Feb 2009
Location: Netherlands
Device: Kindle PW2
Not that I've been able to find...

Btw, here's the code you asked for, to close the size overlay by page tap (I couldn't get my general function working):
Code:
kbook.model.container.sandbox.SIZE_OVERLAY_GROUP.sandbox.VIEW.sandbox.SIZE_OVERLAY.sandbox.canTap = function () {
   return true;
}
kbook.model.container.sandbox.SIZE_OVERLAY_GROUP.sandbox.VIEW.sandbox.SIZE_OVERLAY.sandbox.doTap = function (x, y) {
   if (y < this.height - 128) this.getModel().closeCurrentOverlay();
}
You can put this in any addon, and it'll work. I don't think I'm going to add it as an option.
quisvir is offline   Reply With Quote