From 90878d90c4ee24bbf8d9c762ca859c241171835e Mon Sep 17 00:00:00 2001 From: Zeno Rocha Date: Mon, 21 Sep 2015 11:04:48 -0700 Subject: [PATCH] Updates snippets to be the same as actual demos --- README.md | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 2a50426..20aeeda 100644 --- a/README.md +++ b/README.md @@ -42,11 +42,13 @@ We're living a _declarative renaissance_, that's why we decided to take advantag The easiest way to copy some content to the clipboard, is to include a `data-text` attribute in your trigger element. -example-1 +example-1 ```html - + ``` ### Copy text from another element @@ -59,10 +61,12 @@ The value you include on this attribute needs to match another's element `id` at ```html - + - + ``` ### Cut text from another element @@ -71,15 +75,15 @@ Additionally, you can define a `data-action` attribute to specify if you want to If you omit this attribute, `copy` will be used by default. -example-3 +example-3 ```html - + ```