summaryrefslogtreecommitdiff
path: root/platform/ios/Classes/MuPageViewReflow.m
diff options
context:
space:
mode:
authorPaul Gardiner <paul.gardiner@artifex.com>2013-10-03 15:14:01 +0100
committerPaul Gardiner <paul.gardiner@artifex.com>2013-10-09 14:31:12 +0100
commit5ac49662b7d7affd0b43c6b8e827e292b6b8e3e3 (patch)
tree35d03d97edec2db4463f7764efc95055fad3a216 /platform/ios/Classes/MuPageViewReflow.m
parent17c797eaaec9b33aedf4970fe2184f86f65b25d8 (diff)
downloadmupdf-5ac49662b7d7affd0b43c6b8e827e292b6b8e3e3.tar.xz
iOS: implement internal-link following
Also: add hooks for the other link types remove unnecessary protocol from MuPageViewReflow turn off optimizations for the debug build
Diffstat (limited to 'platform/ios/Classes/MuPageViewReflow.m')
-rw-r--r--platform/ios/Classes/MuPageViewReflow.m5
1 files changed, 5 insertions, 0 deletions
diff --git a/platform/ios/Classes/MuPageViewReflow.m b/platform/ios/Classes/MuPageViewReflow.m
index 541731fb..de47aae3 100644
--- a/platform/ios/Classes/MuPageViewReflow.m
+++ b/platform/ios/Classes/MuPageViewReflow.m
@@ -133,4 +133,9 @@ NSString *textAsHtml(fz_document *doc, int pageNum)
[self stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"document.getElementById('content').style.zoom=\"%f\"", scale]];
}
+-(MuTapResult *) handleTap:(CGPoint)pt
+{
+ return nil;
+}
+
@end