-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Support more HTML input types. * Improve test description. Remove .only * Apply logic only when target is an input element
- Loading branch information
1 parent
08169bc
commit 21db725
Showing
5 changed files
with
95 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>target-input-number</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
</head> | ||
<body> | ||
<!-- 1. Define some markup --> | ||
<input id="foo" type="number" value="0" /> | ||
<button | ||
class="btn" | ||
data-clipboard-action="copy" | ||
data-clipboard-target="#foo" | ||
> | ||
Copy | ||
</button> | ||
|
||
<!-- 2. Include library --> | ||
<script src="../dist/clipboard.min.js"></script> | ||
|
||
<!-- 3. Instantiate clipboard --> | ||
<script> | ||
var clipboard = new ClipboardJS('.btn'); | ||
|
||
clipboard.on('success', function (e) { | ||
console.info('Action:', e.action); | ||
console.info('Text:', e.text); | ||
console.info('Trigger:', e.trigger); | ||
}); | ||
|
||
clipboard.on('error', function (e) { | ||
console.log(e); | ||
}); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.