From 10bbcdd89c40ee9a47ace0be27ac46dc502b73ae Mon Sep 17 00:00:00 2001 From: Francisco Hodge Date: Fri, 8 Jun 2018 10:39:20 -0400 Subject: [PATCH] Updating README cdn usage example --- README.md | 36 +++++++++++++----------------------- 1 file changed, 13 insertions(+), 23 deletions(-) diff --git a/README.md b/README.md index 178caf1f..27a58762 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ function onKeyPress(button){
- + @@ -78,31 +78,21 @@ function onKeyPress(button){ ### js (index.js) ````js -window.require.config({ - paths: { - "keyboard": "https://cdn.rawgit.com/hodgef/simple-keyboard/d477c35c/build/index" - } +let Keyboard = window.SimpleKeyboard.default; + +let myKeyboard = new Keyboard({ + onChange: input => onChange(input), + onKeyPress: button => onKeyPress(button) }); -window.require(["keyboard"], - function (SimpleKeyboard) { - let Keyboard = SimpleKeyboard.default; +function onChange(input) { + document.querySelector(".input").value = input; + console.log("Input changed", input); +} - let myKeyboard = new Keyboard({ - onChange: input => onChange(input), - onKeyPress: button => onKeyPress(button) - }); - - function onChange(input) { - document.querySelector(".input").value = input; - console.log("Input changed", input); - } - - function onKeyPress(button) { - console.log("Button pressed", button); - } - } -); +function onKeyPress(button) { + console.log("Button pressed", button); +} ```` [![Edit 6n0wzxjmjk](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/6n0wzxjmjk)