diff --git a/README.md b/README.md
index 9fb0257f..fbb3f078 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,11 @@
# Vue.js modal
-Simple to use, highly customizable, mobile-friendly Vue.js modal with SSR support.
+Easy to use, highly customizable Vue.js modal library.
+
+### 😎 [Examples](http://vue-js-modal.yev.io/)
+
+### 🤓 [Documentation](https://euvl.github.io/vue-js-modal/)
[](https://badge.fury.io/js/vue-js-modal)
[](https://www.npmjs.com/package/vue-js-modal)
@@ -14,14 +18,6 @@ Version 2.0.0 release candidates will have breaking changes until it is 2.0.1. I
If you notice any bugs or regressings please do not hesitate to report any issues.
-# Sponsorship & support
-
-**If you are using this project please consider sponsorting it's further development & bug fixes**
-
-Links: https://github.com/sponsors/euvl, https://www.buymeacoffee.com/yev
-
-
-
-
{{ text }}
-
Default Property: {{ foo }} - value is "foo"
-
- `,
- props: ['text', 'foo']
- }, {
- text: 'This text is passed as a property'
- })
- },
-}
-```
-
-
-For more examples please take a look at [vue-js-modal.yev.io](http://vue-js-modal.yev.io).
-
-**Note:** keep in mind that there are some limitations in using dynamic modals. If you need full functionality then use ordinary modal instead.
-
-### Properties
-
-| Name | Required | Type | Default | Description |
-| --- | --- | --- | --- | --- |
-| name | true | [String, Number] | | Name of the modal |
-| delay | false | Number | 0 | Delay between showing overlay and actual modal box |
-| resizable | false | Boolean | false | If true allows resizing the modal window, keeping it in the center of the screen. |
-| adaptive | false | Boolean | false | If true, modal box will try to adapt to the window size |
-| draggable | false | [Boolean, String]| false | If true, modal box will be draggable. If string, a selector to use as a handle for dragging |
-| scrollable | false | Boolean | false | If `height` property is `auto` and the modal height exceeds window height - you will be able to scroll modal |
-| reset | false | Boolean | false | Resets position and size before showing modal |
-| focus-trap | false | Boolean | false | Enable focus trap (plugin uses naive implementation of the focus trap) |
-| clickToClose | false | Boolean | true | If set to `false`, it will not be possible to close modal by clicking on the background |
-| transition | false | String | | Transition name |
-| overlayTransition | false | String | 'overlay-fade'| Transition name for the background overlay |
-| classes | false | [String, Array] | '' | Classes that will be applied to the modal box |
-| styles | false | [String, Array, Object] | | Style that will be applied to the modal box (currently only supports strings)|
-| width | false | [String, Number] | 600 | Width in pixels or percents (e.g. 50 or "50px", "50%") |
-| height | false | [String, Number] | 300 | Height in pixels or percents (e.g. 50 or "50px", "50%") or `"auto"` |
-| minWidth | false | Number (px) | 0 | The minimum width to which modal can be resized |
-| minHeight | false | Number (px) | 0 | The minimum height to which modal can be resized |
-| maxWidth | false | Number (px) | Infinity | The maximum width of the modal (if the value is greater than window width, window width will be used instead |
-| maxHeight | false | Number (px) | Infinity | The maximum height of the modal (if the value is greater than window height, window height will be used instead |
-| pivotX | false | Number (0 - 1.0) | 0.5 | Horizontal position in %, default is 0.5 (meaning that modal box will be in the middle (50% from left) of the window |
-| pivotY | false | Number (0 - 1.0) | 0.5 | Vertical position in %, default is 0.5 (meaning that modal box will be in the middle (50% from top) of the window |
-
-### Events
-
-| Name | Description |
-| --- | --- |
-| before-open | Emits while modal is still invisible, but was added to the DOM |
-| opened | Emits after modal became visible or started transition |
-| before-close | Emits before modal is going to be closed. Can be stopped from the event listener calling `event.cancel()` (example: you are creating a text editor, and want to stop closing and ask the user to correct mistakes if the text is not valid)
-| closed | Emits right before modal is destroyed |
-
-Example:
-```vue
-