Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
Merge pull request #1777 from DennisKehrig/dk/issue-510
Browse files Browse the repository at this point in the history
Added a space between "function" and "(event)" (JSLint)
  • Loading branch information
redmunds committed Oct 5, 2012
2 parents d344dd0 + 57cc31c commit 851e758
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/brackets.js
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ define(function (require, exports, module) {

// Prevent unhandled mousedown events from triggering native behavior
// Example: activating AutoScroll when clicking the middle mouse button (see #510)
$("html").on("mousedown", function(event) {
$("html").on("mousedown", function (event) {
event.preventDefault();
});

Expand Down

0 comments on commit 851e758

Please sign in to comment.