Begin parsing OSIS on my own

Also add Kotlin, since I'd like to do what I can to get away from Java.
This commit is contained in:
Bradlee Speice
2014-09-07 21:27:41 -04:00
parent 80238f3cf2
commit 20e4dfe4c4
9 changed files with 125 additions and 18 deletions

View File

@ -9,11 +9,7 @@ app = angular.module('bookApp', []);
app.controller('BookCtrl', [
'$scope', function($scope) {
$scope.verses = [
{
'text': 'hello.'
}
];
$scope.verses = [];
return $scope.appendVerse = function(text) {
return $scope.verses.push({
'text': text
@ -31,8 +27,6 @@ window.appendVerse = function(text) {
return scope.$apply();
};
console.log(Android.testReturn("Good morning."));
/*
Future reference: Get the controller scope like so: