We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cedeb88 commit 252c38cCopy full SHA for 252c38c
GCDWebUploader/GCDWebUploader.bundle/js/index.js
@@ -78,6 +78,7 @@ function _reload(path) {
78
}).fail(function(jqXHR, textStatus, errorThrown) {
79
_showError("Failed retrieving contents of \"" + path + "\"", textStatus, errorThrown);
80
}).done(function(data, textStatus, jqXHR) {
81
+ var scrollPosition = $(document).scrollTop();
82
83
if (path != _path) {
84
$("#path").empty();
@@ -169,6 +170,7 @@ function _reload(path) {
169
170
});
171
172
173
+ $(document).scrollTop(scrollPosition);
174
}).always(function() {
175
_enableReloads();
176
0 commit comments