Example #1
0
        /// <summary>
        /// Navigates the webview to the previous page in the navigation history, if one is available.
        /// </summary>
        public void GoBack()
        {
            Setup();

#if UNIWEBVIEW3_SUPPORTED
            UniWebViewInterface.GoBack(listener.Name);
#elif UNIWEBVIEW2_SUPPORTED
            UniWebViewPlugin.GoBack(listener.Name);
#else
            WWebViewPlugin.GoBack(listener.Name);
#endif
        }
Example #2
0
 /// <summary>
 /// Navigates to the back item in the back-forward list.
 /// </summary>
 public void GoBack()
 {
     UniWebViewInterface.GoBack(listener.Name);
 }