8000 Fixes #8714: turn on "unused": true in JSHint by mikesherov · Pull Request #788 · jquery/jquery-ui · GitHub
[go: up one dir, main page]

Skip to content

Fixes #8714: turn on "unused": true in JSHint #788

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
changes per @scott_gonzalez
  • Loading branch information
mikesherov committed Oct 23, 2012
commit 257505a9e69da0c53e3a989dab87a13112045a29
2 changes: 1 addition & 1 deletion build/release/release.js
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ function abort( msg ) {
function walk( methods ) {
var method = methods.shift();

function next( ) {
function next() {
if ( methods.length ) {
walk( methods );
}
Expand Down
1 change: 0 additions & 1 deletion tests/unit/draggable/draggable_core.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
var el, offsetBefore, offsetAfter, dragged;

function drag(handle, dx, dy) {
el.data("draggable").element;
offsetBefore = el.offset();
$(handle).simulate("drag", {
dx: dx || 0,
Expand Down
0