summaryrefslogtreecommitdiff
path: root/share/www/replicator.html
diff options
context:
space:
mode:
Diffstat (limited to 'share/www/replicator.html')
-rw-r--r--share/www/replicator.html2
1 files changed, 0 insertions, 2 deletions
diff --git a/share/www/replicator.html b/share/www/replicator.html
index e873f141..02c09219 100644
--- a/share/www/replicator.html
+++ b/share/www/replicator.html
@@ -76,7 +76,6 @@ specific language governing permissions and limitations under the License.
$("#records tbody.content").empty();
var source = $("#from_local")[0].checked ? $("#from_name").val() : $("#from_url").val();
var target = $("#to_local")[0].checked ? $("#to_name").val() : $("#to_url").val();
- $(document.body).addClass("loading");
$.couch.replicate(source, target, {
success: function(resp) {
$.each(resp.history, function(idx, record) {
@@ -86,7 +85,6 @@ specific language governing permissions and limitations under the License.
});
$("#records tbody tr").removeClass("odd").filter(":odd").addClass("odd");
$("#records tbody.footer td").text("Replication session " + resp.session_id);
- $(document.body).removeClass("loading");
}
});
});