Skip to content

Commit

Permalink
Merge branch 'release-0.6.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
chipx86 committed Jun 13, 2012
2 parents 82b13c0 + f49584c commit 7ccca50
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ Lead Developers:

* Christian Hammond
* David Trowbridge
* Micah Dowty


Contributors:
Expand All @@ -18,6 +17,7 @@ Contributors:
* Kalil Amlani
* Kevin Quinn
* Lee Loucks
* Micah Dowty
* Onkar Shinde
* Paolo Borelli
* Simon Wu
Expand Down
6 changes: 6 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
version 0.6.19 final (11-June-2012):
* JavaScript:
* inlineEditor no longer bubbles keypress events up. This helps prevent
problems with global key handlers being greedy.


version 0.6.18 final (5-June-2012):
* djblets.siteconfig:
* Settings form rows in the template now have IDs indicating the row
Expand Down
3 changes: 3 additions & 0 deletions djblets/media/js/jquery.gravy.js
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,9 @@ $.widget("ui.inlineEditor", {
break;
}
})
.keypress(function(e) {
e.stopPropagation();
})
.keyup(function(e) {
self._updateDirtyState();
});
Expand Down

0 comments on commit 7ccca50

Please sign in to comment.