diff options
-rw-r--r-- | htdocs/nfc/index.html | 10 | ||||
-rw-r--r-- | htdocs/nfc/nfc-binding.js | 2 |
2 files changed, 3 insertions, 9 deletions
diff --git a/htdocs/nfc/index.html b/htdocs/nfc/index.html index 999dc0d..c7c049e 100644 --- a/htdocs/nfc/index.html +++ b/htdocs/nfc/index.html @@ -1,14 +1,8 @@ <!doctype html> <html> <head> - <title>nfc-binding</title> + <title>agl-service-nfc</title> <meta charset="UTF-8"> - - <!-- - <link rel="stylesheet" type="text/css" href="prettify.css"> - <script type="text/javascript" src="prettify.js"></script> - --> - <script type="text/javascript" src="AFB-websock.js"></script> <script type="text/javascript" src="nfc-binding.js"></script> <link rel="stylesheet" type="text/css" href="binding-debug.css" /> @@ -16,7 +10,7 @@ <body onload="init();" id="app-body"> <div id="debug-panel-container"></div> - <h1>hl-persistence-binding</h1> + <h1>agl-service-nfc</h1> <p> <ul> <li><button onclick="subscribe();">Subscribe</button></li> diff --git a/htdocs/nfc/nfc-binding.js b/htdocs/nfc/nfc-binding.js index 375d036..4241c26 100644 --- a/htdocs/nfc/nfc-binding.js +++ b/htdocs/nfc/nfc-binding.js @@ -1,4 +1,4 @@ -var afb = new AFB("api", "mysecret"); +var afb = new AFB("api", "HELLO"); var ws; function add_debbug_panel() { |