3 function MotifsPerspective(options){
4 var old_callback = options.callback;
6 options.callback = function(){
8 this.$editor = $("#motifs-editor");
9 this.object_type_name = "motyw";
10 this.xml_object_type = 'theme';
14 $.themes.autocomplete(self.$tag_name);
16 old_callback.call(this);
19 $.wiki.Perspective.call(this, options);
22 MotifsPerspective.prototype = new $.wiki.ObjectsPerspective();
24 $.wiki.MotifsPerspective = MotifsPerspective;