3 function SummaryPerspective(options) {
4 var old_callback = options.callback;
5 options.callback = function(){
6 old_callback.call(this);
9 $.wiki.Perspective.call(this, options);
12 SummaryPerspective.prototype = new $.wiki.Perspective();
14 SummaryPerspective.prototype.freezeState = function(){
18 SummaryPerspective.prototype.onEnter = function(success, failure){
19 $.wiki.Perspective.prototype.onEnter.call(this);
21 console.log("Entered summery view");
24 $.wiki.SummaryPerspective = SummaryPerspective;