view Resources/CommandTool/protoc-tests/basic_test.html @ 445:ee41b6a017d7 bgo-commands-codegen

dumb change
author bgo-osimis
date Wed, 16 Jan 2019 16:24:45 +0100
parents
children
line wrap: on
line source

<html>
<head>
<title>Notepad</title>
<script src='https://cdn.rawgit.com/google/closure-library/master/closure/goog/base.js'></script>
<script src="generated_js/searchrequest.js"></script>
</head>
<body>

<div id="notes">
</div>

<script>
function main() {
  var noteData = [
    {'title': 'Note 1', 'content': 'Content of Note 1'},
    {'title': 'Note 2', 'content': 'Content of Note 2'}];

  var noteListElement = document.getElementById('notes');
  var notes = proto.SearchRequest(1);
}
main();
</script>
</body>
</html>