summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordllud <dllud@riseup.net>2019-12-25 22:41:14 +0100
committerdllud <dllud@riseup.net>2019-12-25 22:41:14 +0100
commit2a0aff5bd41f08340156e9b743ef16c61d486c97 (patch)
treeb843c52510f70c326d8747db014975736174732c
parentf116f4fa81f9d7665e6d2530fc82b5ea711a6a80 (diff)
downloadwebview-presentation-2a0aff5bd41f08340156e9b743ef16c61d486c97.tar.gz
webview-presentation-2a0aff5bd41f08340156e9b743ef16c61d486c97.tar.bz2
webview-presentation-2a0aff5bd41f08340156e9b743ef16c61d486c97.zip
Use auto-incrementing overlay.
-rw-r--r--slides.tex10
1 files changed, 5 insertions, 5 deletions
diff --git a/slides.tex b/slides.tex
index c1b962d..55c3b82 100644
--- a/slides.tex
+++ b/slides.tex
@@ -298,9 +298,9 @@ public class MainActivity extends Activity {
\subsection{Mapping WebView to GeckoView}
\begin{frame}[fragile]
\frametitle{Mapping WebView to GeckoView}
- \begin{itemize}
+ \begin{itemize}[<+->]
\setlength\itemsep{1em}
- \item<1-> Some functions have a 1:1 mapping.\\\smallskip
+ \item Some functions have a 1:1 mapping.\\\smallskip
{\small
\begin{tabular}{l | l}
WebView & GeckoView \\
@@ -310,7 +310,7 @@ public class MainActivity extends Activity {
\verb|stopLoading()| & \verb|GeckoSession.stop()|
\end{tabular}
}
- \item<2-> Others require emulation.\\\smallskip
+ \item Others require emulation.\\\smallskip
{\small
\begin{tabular}{l | l}
WebView & GeckoView \\
@@ -319,9 +319,9 @@ public class MainActivity extends Activity {
\verb|pageDown()| & \verb|PanZoomController.scrollBy(width,height)|
\end{tabular}
}
- \item<3-> Others require more features from Gecko to be exposed via GeckoView,
+ \item Others require more features from Gecko to be exposed via GeckoView,
e.g. \verb|zoomIn()|.
- \item<4-> Others still, added on latest Android APIs (26-29), seem too tied to Chromium,
+ \item Others still, added on latest Android APIs (26-29), seem too tied to Chromium,
e.g. \verb|getWebViewLooper()|, \verb|getWebChromeClient()|, \verb|getWebViewClient()|.
\end{itemize}
\end{frame}