remove positionRelativeTo method

This commit is contained in:
Ezequiel Bergamaschi 2014-05-21 23:52:22 -03:00
parent 3716b1a3b9
commit e6badad763
2 changed files with 0 additions and 13 deletions

View File

@ -67,12 +67,6 @@ web2d.Element = new Class({
this._peer.setPosition(cx, cy);
},
positionRelativeTo : function(elem, options) {
this._peer.positionRelativeTo(elem, options);
},
/**
* Allows the registration of event listeners on the event target.
* type

View File

@ -214,13 +214,6 @@ web2d.peer.svg.ElementPeer = new Class({
return listeners;
},
// positionRelativeTo:function (elem, options) {
// options = !$defined(options) ? {} : options;
// options['relativeTo'] = document.id(this._native);
// elem.position(options);
// },
//
/**
* Move element to the front
*/