total mess: some random experiments with images and lqc's dvcs
[redakcja.git] / redakcja / static / js / wiki_img / view_summary.js
diff --git a/redakcja/static/js/wiki_img/view_summary.js b/redakcja/static/js/wiki_img/view_summary.js
new file mode 100644 (file)
index 0000000..5d06647
--- /dev/null
@@ -0,0 +1,25 @@
+(function($){
+
+       function SummaryPerspective(options) {
+               var old_callback = options.callback;
+               var self = this;
+
+               $.wiki.Perspective.call(this, options);
+    };
+
+    SummaryPerspective.prototype = new $.wiki.Perspective();
+
+    SummaryPerspective.prototype.freezeState = function(){
+        // must
+    };
+
+       SummaryPerspective.prototype.onEnter = function(success, failure){
+               $.wiki.Perspective.prototype.onEnter.call(this);
+
+               console.log("Entered summery view");
+       };
+
+       $.wiki.SummaryPerspective = SummaryPerspective;
+
+})(jQuery);
+