X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/1b8ab1430082a145a3e4807de837dcc1568178a3..c52436a7e25876ee3509df2467c2a9ef33303436:/platforma/static/js/wiki/diff_view.js?ds=sidebyside diff --git a/platforma/static/js/wiki/diff_view.js b/platforma/static/js/wiki/diff_view.js deleted file mode 100644 index 3eafd135..00000000 --- a/platforma/static/js/wiki/diff_view.js +++ /dev/null @@ -1,27 +0,0 @@ -(function($){ - - function DiffPerspective(options) { - var old_callback = options.callback || function() {}; - options.callback = function(){ - old_callback.call(this); - }; - - $.wiki.Perspective.call(this, options); - }; - - DiffPerspective.prototype = new $.wiki.Perspective(); - - DiffPerspective.prototype.freezeState = function(){ - // must - }; - - DiffPerspective.prototype.onEnter = function(success, failure){ - $.wiki.Perspective.prototype.onEnter.call(this); - - console.log("Entered diff view"); - }; - - $.wiki.DiffPerspective = DiffPerspective; - -})(jQuery); -