[Selection] Sketch in context menu view

This commit is contained in:
Victor Woeltjen 2016-09-21 13:16:24 -07:00
parent 4e1cfac4b9
commit e4c3412e8a

View File

@ -0,0 +1,10 @@
define(['zepto'], function ($) {
function ContextMenuView(actions) {
this.actions = actions;
}
ContextMenuView.prototype.show = function (element) {
};
return ContextMenuView;
});