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

ugly-unit-test
Bradlee Speice 2014-06-18 22:58:54 -04:00
parent f5800388d3
commit 018fe29a75
1 changed files with 1 additions and 1 deletions

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());
}
});