3 function SummaryPerspective(options) {
4 var old_callback = options.callback;
7 $.wiki.Perspective.call(this, options);
10 SummaryPerspective.prototype = new $.wiki.Perspective();
12 SummaryPerspective.prototype.freezeState = function(){
16 SummaryPerspective.prototype.onEnter = function(success, failure){
17 $.wiki.Perspective.prototype.onEnter.call(this);
19 console.log("Entered summery view");
22 $.wiki.SummaryPerspective = SummaryPerspective;