fixes
[redakcja.git] / redakcja / static / js / wiki_img / view_summary.js
1 (function($){
2
3         function SummaryPerspective(options) {
4                 var old_callback = options.callback;
5                 var self = this;
6
7                 $.wiki.Perspective.call(this, options);
8     };
9
10     SummaryPerspective.prototype = new $.wiki.Perspective();
11
12     SummaryPerspective.prototype.freezeState = function(){
13         // must
14     };
15
16         SummaryPerspective.prototype.onEnter = function(success, failure){
17                 $.wiki.Perspective.prototype.onEnter.call(this);
18
19                 console.log("Entered summery view");
20         };
21
22         $.wiki.SummaryPerspective = SummaryPerspective;
23
24 })(jQuery);
25