Initial Angular commit

This commit is contained in:
Bradlee Speice
2014-09-01 10:47:59 -04:00
parent bd77dcc3a7
commit 1255580b7a
5 changed files with 19 additions and 18 deletions

View File

@ -1,6 +1,7 @@
package org.bspeice.minimalbible.activity.viewer;
import android.app.Activity;
import android.os.Build;
import android.os.Bundle;
import android.util.Log;
import android.view.LayoutInflater;
@ -112,7 +113,7 @@ public class BookFragment extends BaseFragment {
Verse initial = new Verse(vUtil.getVersification(mBook.get()),
BibleBook.GEN, 1, 1);
super.onPageFinished(view, url);
invokeJavascript("set_content", lookupService.getHTMLVerse(initial));
// invokeJavascript("set_content", lookupService.getHTMLVerse(initial));
}
@Override
@ -122,6 +123,11 @@ public class BookFragment extends BaseFragment {
description);
}
});
// TODO: Remove remote debugging when ready
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
WebView.setWebContentsDebuggingEnabled(true);
}
}
/**