One last minor tweak to show the book name instead of random text.

This commit is contained in:
Bradlee Speice 2014-06-18 22:58:54 -04:00
parent f5800388d3
commit 018fe29a75

View File

@ -108,7 +108,7 @@ public class BookFragment extends BaseFragment {
@Override
public void onPageFinished(WebView view, String url) {
super.onPageFinished(view, url);
invokeJavascript("set_content", "Hello, world.");
invokeJavascript("set_content", BookFragment.this.mBook.getName());
}
});