Skip to content
This repository has been archived by the owner on Apr 23, 2024. It is now read-only.

Commit

Permalink
Update stack trace while moving sampling slider
Browse files Browse the repository at this point in the history
Summary: Not just when releasing! I definitely thought this worked before, but perhaps not...

Test Plan: Dragged the "Time" slider for the sampling profiler, and saw the stack trace update while I dragged it, not just after mouseup.

Reviewers: alan

Reviewed By: alan

Differential Revision: http://phabricator.khanacademy.org/D7255
  • Loading branch information
sophiebits committed Mar 11, 2014
1 parent 0213ffb commit ac00a1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/js/profiler.js
Expand Up @@ -267,7 +267,7 @@ var GaeMiniProfiler = {
.find(".settings input")
.change(function() { GaeMiniProfiler.setCookieMode(this); return false; }).end()
.find(".sample-number-slider")
.change(function() { GaeMiniProfiler.updateSampleNumber(this, data); }).end()
.on("input", function() { GaeMiniProfiler.updateSampleNumber(this, data); }).end()
.find(".ignore-frames-slider")
.on("input", function() { GaeMiniProfiler.updateSampleNumber(this, data); }).end()
.click(function(e) { e.stopPropagation(); })
Expand Down

0 comments on commit ac00a1f

Please sign in to comment.