Skip to content

Commit aa3e311

Browse files
committed
chore(release): v0.0.4
1 parent 2006b0b commit aa3e311

File tree

5 files changed

+28
-5
lines changed

5 files changed

+28
-5
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
<a name="v0.0.4"></a>
2+
### v0.0.4 (2013-08-13)
3+
4+
5+
#### Bug Fixes
6+
7+
* **desktop:** unbind keydown when scroll elm is destroyed ([51500ce9](http://github.com/ajoslin/angular-scrolly/commit/51500ce93087f5e62e84207e465722710afc3d17))
8+
* **dragger:** stop propagation, so scroll on popups works ([2006b0bc](http://github.com/ajoslin/angular-scrolly/commit/2006b0bc658c78d4349ef718b860c557cd3a7e97))
9+
* **scroller:**
10+
* remove scroll event ([c8b170e2](http://github.com/ajoslin/angular-scrolly/commit/c8b170e29728d488ec4a312c19a9e7f60f07245b))
11+
* count container top and bottom offset ([f8b71798](http://github.com/ajoslin/angular-scrolly/commit/f8b71798c7acfddf8dca6912f50245479ecdc358))
12+
* **transformer:** Try both cases of transformProp (firefox, ie10) ([761f7c22](http://github.com/ajoslin/angular-scrolly/commit/761f7c22450c6c56cd96c079ec658ddcfcef3044))
13+
14+
15+
#### Features
16+
17+
* **$scroller:** allow desktop scrolling ([8249eaf2](http://github.com/ajoslin/angular-scrolly/commit/8249eaf25049025a014e9439e8febb0b5e190100))
18+
* **dragger:** add horizontal option ([ddd75112](http://github.com/ajoslin/angular-scrolly/commit/ddd75112c88b3616f9d313d8ff233dcdbb2763f2))
19+
* **scroller:** support mousewheel, keys ([a365debd](http://github.com/ajoslin/angular-scrolly/commit/a365debd03e7fafcc2fe83bc34d0fbdaebbe4074))
20+
121
<a name="v0.0.3"></a>
222
### v0.0.3 (2013-08-09)
323

angular-scrolly.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* angular-scrolly - v0.0.3 - 2013-08-09
2+
* angular-scrolly - v0.0.4 - 2013-08-13
33
* http://github.com/ajoslin/angular-scrolly
44
* Created by Andy Joslin; Licensed under Public Domain
55
*/
@@ -162,6 +162,7 @@ angular.module('ajoslin.scrolly', [
162162
}
163163
function dragStart(e) {
164164
e = e.originalEvent || e;
165+
e.stopPropagation();
165166
var target = e.target || e.srcElement;
166167
var point = e.touches ? e.touches[0] : e;
167168
if (parentWithAttr(target, 'dragger-ignore')) {
@@ -185,6 +186,7 @@ angular.module('ajoslin.scrolly', [
185186
function dragMove(e) {
186187
e = e.originalEvent || e;
187188
e.preventDefault();
189+
e.stopPropagation();
188190
if (state.dragging) {
189191
var point = e.touches ? e.touches[0] : e;
190192
var delta = getPos(point) - state.pos;
@@ -219,6 +221,7 @@ angular.module('ajoslin.scrolly', [
219221
}
220222
function dragEnd(e) {
221223
e = e.originalEvent || e;
224+
e.stopPropagation();
222225
if (state.dragging) {
223226
state.dragging = false;
224227
var now = Date.now();

angular-scrolly.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-scrolly",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"homepage": "http://github.com/ajoslin/angular-scrolly",
55
"author": "Andy Joslin",
66
"license": "Public Domain",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-scrolly",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"devDependencies": {
55
"grunt": "~0.4.1",
66
"grunt-contrib-concat": "~0.3.0",

0 commit comments

Comments
 (0)