X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/ad481d9335cb91f56adfffda3999284f37d37942..deb0c90b1c089230918efab45deec35c3bea3d62:/project/static/js/views/xml.js diff --git a/project/static/js/views/xml.js b/project/static/js/views/xml.js index a1b6ca63..6b7571a3 100644 --- a/project/static/js/views/xml.js +++ b/project/static/js/views/xml.js @@ -66,13 +66,13 @@ var XMLView = View.extend({ modelStateChanged: function(property, value) { if (value == 'synced' || value == 'dirty') { - this.unfreeze(); + this.parent.unfreeze(); } else if (value == 'unsynced') { - this.freeze('Niezsynchronizowany...'); + this.parent.freeze('Niezsynchronizowany...'); } else if (value == 'loading') { - this.freeze('Ładowanie...'); + this.parent.freeze('Ładowanie...'); } else if (value == 'saving') { - this.freeze('Zapisywanie...'); + this.parent.freeze('Zapisywanie...'); } },