Begin adding proxy classes to allow the toolbar to interact with elements in a fixed position view, WTD-879.
21 lines
380 B
JavaScript
21 lines
380 B
JavaScript
/*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;
|
|
}
|
|
); |