-
-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use jquery.scrollSync.js jQuery plugin
to synchronize the scroll position between the #wmd-input and #wmd-preview, and update README.md file and help popup
- Loading branch information
1 parent
0429fa3
commit c5eb626
Showing
3 changed files
with
38 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* | ||
* jquery.scrollSync | ||
* Synchronize scroll between multiple containers with varying size | ||
* Date: 20151201 | ||
* | ||
* Thomas Frost | ||
* http://xtf.dk/ | ||
* | ||
* Required: | ||
* jQuery | ||
* http://jquery.com/ | ||
* | ||
* Usage: | ||
* $('.scrollable').scrollSync(); | ||
*/ | ||
(function ($) { | ||
$.fn.scrollSync = function () { | ||
var $this = $(this); | ||
$this.on('scroll', function (e) { | ||
var $sender = $(e.currentTarget); | ||
if ($sender.is(":hover")) { | ||
var percentage = this.scrollTop / (this.scrollHeight - this.offsetHeight); | ||
$this.not($sender).each(function (i, other) { | ||
other.scrollTop = percentage * (other.scrollHeight - other.offsetHeight); | ||
}); | ||
} | ||
}); | ||
}; | ||
})(jQuery); |