[Fixed Position] Add proxy object

Add proxy object to represent the selection of the fixed position
view itself, WTD-879.
This commit is contained in:
Victor Woeltjen
2015-02-18 09:03:50 -08:00
parent 4be2a3f1cd
commit 97b844563d
2 changed files with 38 additions and 11 deletions

View File

@ -0,0 +1,26 @@
/*global define*/
define(
[],
function () {
"use strict";
/**
* Proxy for configuring a fixed position view via the toolbar.
* @constructor
* @param configuration the view configuration object
*/
function FixedProxy(configuration) {
return {
/**
* Add a new visual element to this view.
*/
add: function (type) {
window.alert("Placeholder. Should add a " + type + ".");
}
};
}
return FixedProxy;
}
);