@phoenix-plugin-registry/swmitra.html-designer
Version:
NOW WITH RESPONSIVE DESIGN TOOLS (BETA)! Design and customize web ui with HTML and CSS. Now with taggable Design snippet/bookmark support.
17 lines (14 loc) • 495 B
JavaScript
define(function (require, exports, module) {
"use strict";
var htmlProfile = require("widgetprofiles/PureHTMLProfileHandler"),
customProfile = require("widgetprofiles/CustomProfileHandler");
function _getProfile(profileType){
var profile;
switch(profileType){
case 'html': profile = htmlProfile; break;
case 'custom': profile = customProfile; break;
}
return profile;
}
exports.getProfile = _getProfile;
});