Revert "Report unsaved changes after 60 seconds"

This reverts commit 44a7e598f2fdbd91d18cc340de477ca3d33a1338.
This commit is contained in:
James Allen 2015-11-19 12:04:35 +00:00
parent 99bca31766
commit 442ae638de

View file

@ -24,8 +24,6 @@ define [
if oldStatus[doc_id]?
newStatus[doc_id] = oldStatus[doc_id]
newStatus[doc_id].unsavedSeconds += 1
if newStatus[doc_id].unsavedSeconds == 60
reportUnsavedChanges(doc)
else
newStatus[doc_id] = {
unsavedSeconds: 0
@ -41,12 +39,6 @@ define [
$scope.docSavingStatusCount = newUnsavedCount
$scope.$apply()
reportUnsavedChanges = (doc) ->
ide.reportError new Error("unsaved changes"), {
inflightOp: doc?.getInflightOp(),
pendingOp: doc?.getPendingOp()
}
warnAboutUnsavedChanges = () ->
if Document.hasUnsavedChanges()
return "You have unsaved changes. If you leave now they will not be saved."