diff --git a/README.md b/README.md
index b7d98e5..07a1b5b 100644
--- a/README.md
+++ b/README.md
@@ -86,19 +86,17 @@ methods: {
If you use **Bower** package manager - you will have to initialize library differently:
-```
+```js
Vue.use(window["vue-js-modal"].default);
```
### Dialog
-In version `1.2.8`, the `` component was added.
-
It is a simplified version of the modal, which has most parameters set by default and is pretty useful for quick prototyping, showing alerts or creating mobile-like modals.
To start using `` you must set `dialog: true` in plugin configuration:
-```javascript
+```js
Vue.use(VModal, { dialog: true })
```
diff --git a/package.json b/package.json
index 4553aa3..262676f 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "vue-js-modal",
"description": "Modal Component for Vue.js",
- "version": "1.3.4",
+ "version": "1.3.5",
"author": "euvl ",
"main": "dist/index.js",
"repository": {