diff --git a/packages/sproutcore-handlebars/lib/controls/button.js b/packages/sproutcore-handlebars/lib/controls/button.js index 64fb96f1045..b6d7395073f 100644 --- a/packages/sproutcore-handlebars/lib/controls/button.js +++ b/packages/sproutcore-handlebars/lib/controls/button.js @@ -59,6 +59,7 @@ SC.Button = SC.View.extend({ this._mouseDown = false; this._mouseEntered = false; + return false; }, // TODO: Handle proper touch behavior. Including should make inactive when diff --git a/packages/sproutcore-metal/docs/NOTES.md b/packages/sproutcore-metal/docs/NOTES.md index 2ee8aeb89f8..d20aa5c9d71 100644 --- a/packages/sproutcore-metal/docs/NOTES.md +++ b/packages/sproutcore-metal/docs/NOTES.md @@ -355,7 +355,7 @@ notifications and other actions. In order to do this it relies on a newer feature in JavaScript environments called __getters and setters__. All browsers in common usage support getters and setters except for IE7 and 8. -In particular, all mobile browsers support the, which is why we think now is +In particular, all mobile browsers support them, which is why we think now is the time to start to use them. If you need to support IE7 and 8 however, you cannot rely on the getter and