use only ID name for DOM (#431)

This commit is contained in:
Nathan 2017-07-01 02:52:07 +08:00 committed by Zeno Rocha
parent b6e6b80ab0
commit f960b0d20a

View File

@ -149,7 +149,7 @@ For use in Bootstrap Modals or with any other library that changes the focus you
```js
new Clipboard('.btn', {
container: document.getElementById('#modal')
container: document.getElementById('modal')
});
```