euvl
b937c93ed5
v1.3.0 🚀
2017-09-27 10:24:15 +01:00
euvl
8d5316601f
Fixed click event not working on dragagble modals and inputs now are not draggable
2017-09-27 10:22:50 +01:00
euvl
12797cc0e6
Merge branch 'master' of https://github.com/euvl/vue-modal
2017-09-27 10:10:11 +01:00
euvl
9bf61f5a2c
Bubbling modal events to v-dialog
2017-09-27 10:10:06 +01:00
Yev Vlasenko
6a1581b9b3
Update README.md
2017-09-20 14:30:55 +01:00
Yev Vlasenko
9b01fd7fd5
Merge pull request #88 from opencollective/opencollective
...
Activating Open Collective
2017-09-19 17:21:06 +01:00
Aseem Sood
a054d5ecce
Added call to donate after npm install (optional)
2017-09-19 12:17:25 -04:00
Aseem Sood
d4937de50a
Added backers and sponsors on the README
2017-09-19 12:17:25 -04:00
Aseem Sood
341d94b06c
Added .github/ISSUE_TEMPLATE.md (optional)
2017-09-19 12:16:45 -04:00
Yev Vlasenko
0602529e61
Update README.md
2017-09-19 15:23:53 +01:00
Yev Vlasenko
3ac104f569
Merge pull request #87 from arve0/vue_runtime_dep
...
Remove Vue runtime dependency
2017-09-16 08:50:06 +01:00
euvl
40bdbfb3bc
Merge branch 'master' of https://github.com/euvl/vue-modal
2017-09-14 11:47:10 +01:00
euvl
ddefb5db8f
v1.2.12
2017-09-14 11:47:08 +01:00
Yev Vlasenko
8d81fb14e1
Merge pull request #86 from arve0/pivot-x-fix-width
...
Use window.innerWidth instead of body.clientWidth
2017-09-13 21:35:12 +01:00
arve0
e3179625d0
Remove Vue runtime dependency
...
This allow the bundle to be used in jsfiddle, plnkr, jsbin, etc.,
as the bundle does not depend on Vue.
The problem lies on second line of bundle
```js
"object" == typeof exports ? exports["vue-js-modal"] = factory(require("vue")) : root["vue-js-modal"] = factory(root.vue)
```
where `factory` tries to find `root.vue`, but the official Vue bundle exports
as `root.Vue`.
Removing the runtime dependency solves this.
`Object.assign` is available in all browsers but IE:
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign
2017-09-13 20:30:01 +02:00
arve0
9f814fb842
Use window.innerWidth instead of body.clientWidth
...
Fixes pivot-x for cases where you have body smaller than document,
for example:
```html
<!DOCTYPE html>
<html>
<head>
<style>
html {
background-color: white;
}
body {
width: 80%;
background-color: lightgreen;
}
</style>
</head>
<body>
<script>
document.body.innerHTML += `<pre>
window.innerWidth is ${window.innerWidth}<br>
document.body.clientWidth is ${document.body.clientWidth}<br>
window.innerWidth == document.body.clientWidth: ${window.innerWidth == document.body.clientWidth}`
</script>
</body>
</html>
```
Fixes issue #84
2017-09-13 19:25:21 +02:00
euvl
48721f956d
Added uglification stap to remove dead code (fix by @arve0)
2017-09-13 13:41:30 +01:00
euvl
3a8a5884c8
Added configurable clickToClose and width for v-dialog ( #76 )
2017-09-12 17:31:41 +01:00
euvl
de051ee119
Merge branch 'master' of https://github.com/euvl/vue-modal
2017-09-07 15:44:00 +01:00
euvl
b5642b8bd6
Adding overflow:hidden to the body when "scrollable" is enabled. #71
2017-09-07 15:43:58 +01:00
Yev Vlasenko
5898d252cd
Merge pull request #77 from detailyang/patch-1
...
doc: fix js demo syntax error
2017-08-31 17:10:54 +01:00
detailyang
f80a08ab05
doc: fix js demo syntax error
2017-08-31 23:38:14 +08:00
Yev Vlasenko
f61e6afac2
Update README.md
2017-08-29 15:03:48 +01:00
Yev Vlasenko
97e950a52e
Merge pull request #74 from euvl/mobile-touch-fix
...
v1.2.9
2017-08-24 07:56:19 +01:00
euvl
f1049716eb
v1.2.9
2017-08-24 07:55:27 +01:00
Yev Vlasenko
b3ce3d5314
Merge pull request #73 from euvl/mobile-touch-fix
...
Added touchstart to places where mousedown is called
2017-08-23 11:27:38 +01:00
euvl
c3098b52c7
Merge remote-tracking branch 'origin/master' into mobile-touch-fix
2017-08-23 11:26:18 +01:00
euvl
7dc7f5a303
Changed unit test env to PhantomJS
2017-08-23 11:21:13 +01:00
euvl
9f25307e30
CircleCI: added sudo for karma install
2017-08-23 11:14:34 +01:00
euvl
426f6c4955
Added touchstart to places where mousedown is called
2017-08-23 10:14:01 +01:00
euvl
a4b04312f0
Added globals task
2017-08-22 12:14:15 +01:00
euvl
9f857ea80b
Removed update-npm task
2017-08-22 12:10:36 +01:00
euvl
074b191c02
Fixed a typ0 in Circle CI foldername (lol)
2017-08-22 12:05:51 +01:00
euvl
35451d0c95
Updated CircleCI config
2017-08-22 12:02:06 +01:00
euvl
6e1b9d7aa4
Updated CircleCI config
2017-08-22 11:48:29 +01:00
euvl
1fa934e0a1
Merge branch 'master' of https://github.com/euvl/vue-modal
2017-08-22 11:39:50 +01:00
euvl
81e8735bd3
Added circleCI integration
2017-08-22 11:39:47 +01:00
Yev Vlasenko
0a9cbb037a
Update README.md
2017-08-19 16:51:40 +01:00
Yev Vlasenko
7229c8e5af
Update README.md
2017-08-14 19:25:16 +01:00
Yev Vlasenko
4934fb16ed
Update README.md
2017-08-14 14:52:56 +01:00
euvl
d48e2772a9
Added code linting & cleaned code acording to JavaScript Standard Style
2017-08-14 14:51:28 +01:00
euvl
de592d27f4
Added comments
2017-08-14 14:32:26 +01:00
Yev Vlasenko
c1f4d6f2e6
Added readme.cn.md file for chinese translation
2017-08-10 13:11:52 +01:00
Yev Vlasenko
8ff920b984
Added a file for russian translation of readme
2017-08-10 13:10:37 +01:00
Yev Vlasenko
a3ca70f89e
Update README.md
2017-08-10 11:38:12 +01:00
Yev Vlasenko
f4ba0e6caf
Update README.md
2017-08-10 11:00:48 +01:00
Yev Vlasenko
67159cc6de
Update README.md
2017-08-10 10:58:09 +01:00
Yev Vlasenko
9a0ff62a4e
Update README.md
2017-08-10 10:52:52 +01:00
Yev Vlasenko
ffe018878d
Update README.md
2017-08-10 10:45:05 +01:00
Yev Vlasenko
f2a1bea004
Delete CHANGELOG.md
2017-08-10 10:36:46 +01:00