3 function SummaryPerspective(doc, callback) {
4 this.perspective_id = 'SummaryPerspective';
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;