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,11 +1,8 @@
<html>
<body>
<div id="content"></div>
<script type="text/javascript">
function set_content(content) {
document.getElementById("content").innerHTML = content;
}
</script>
</body>
</html>
<html lang="en" ng-app>
<head>
<script type="text/javascript" src="file:///android_asset/dist/book-bundle.js"></script>
</head>
<body>
<div id="content">Hello {{ 'Android!' }}</div>
</body>
</html>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +1,3 @@
require 'angular'
console.log 'hello'

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);
}
}
/**