[Fixed Position] Begin adding element proxy classes

Begin adding proxy classes to allow the toolbar to interact with
elements in a fixed position view, WTD-879.
This commit is contained in:
Victor Woeltjen
2015-02-18 19:26:06 -08:00
parent 466a169562
commit f24f62dedc
4 changed files with 94 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
/*global define*/
define(
['./ElementProxy'],
function (ElementProxy) {
'use strict';
/**
*
*/
function TelemetryProxy(element, index, elements) {
var proxy = new ElementProxy(element, index, elements);
proxy.id = element.id;
return proxy;
}
return TelemetryProxy;
}
);