]> www.average.org Git - mkgallery.git/blobdiff - include/showwin.js
wip
[mkgallery.git] / include / showwin.js
index daec73a234cb46fab57ffcf3ae744df6acf11a5d..6171ba2ee47ab5538f4bb6392578a7d995576e73 100644 (file)
@@ -16,7 +16,6 @@ var showWindow = new Class({
 
        getOptions: function(){
                return {
-                       embed: [],
                        zIndex: 2,
                        container: document.body,
                        onClick: $empty,
@@ -44,16 +43,6 @@ var showWindow = new Class({
                        this.options.onClick()
                }.bind(this)).injectInside(this.options.container);
 
-               this.embedded = [];
-               this.options.embed.each(function(el){
-                       var sub = new Element('div');
-                       sub.addClass(el).setProperties({
-                               id: el,
-                               name: el,
-                       }).injectInside(this.container);
-                       this.embedded.push(sub);
-               },this);
-
                this.position();
 
                window.addEvent('resize', this.position.bind(this));