diff --git a/README.md b/README.md
index 1d892f4..bfee8d2 100644
--- a/README.md
+++ b/README.md
@@ -142,7 +142,7 @@ and inits them.
getBillboard | function |
is used by the home page, the workspace picker, and the fork pulldown to show a
consistent name/image/description tag for the workspace throughout the ChiliPeppr ecosystem.
addBillboardToWorkspaceMenu | function | function ()
Inject the billboard into the Workspace upper right corner pulldown which
follows the standard template for workspace pulldown menus. |
setupResize | function | function ()
Listen to window resize event. |
onResize | function | function ()
When browser window resizes, forcibly resize the Console window |
loadTemplateWidget | function | function (callback)
Load the Template widget via chilipeppr.load() so folks have a sample
-widget they can fork as a starting point for their own. |
loadSpjsWidget | function | function (callback)
Load the Serial Port JSON Server widget via chilipeppr.load() |
loadSenscapeBootloaderWidget | function | function (callback)
Load Senscape Bootloader Wedget via chilipeppr.load() |
loadLuaEditorWidget | function | function (callback)
Load the Lua Editor Widget widget via chilipeppr.load() |
loadConsoleWidget | function | function (callback)
Load the Console widget via chilipeppr.load() |
loadWorkspaceMenu | function | function (callback)
Load the workspace menu and show the pubsubviewer and fork links using
+widget they can fork as a starting point for their own. |
loadSpjsWidget | function | function (callback)
Load the Serial Port JSON Server widget via chilipeppr.load() |
loadSenscapeBootloaderWidget | function | function (callback)
Load Senscape Bootloader Wedget via chilipeppr.load() |
loadDropTestWidget | function | function (callback)
Load Senscape Bootloader Wedget via chilipeppr.load() |
loadLuaEditorWidget | function | function (callback)
Load the Lua Editor Widget widget via chilipeppr.load() |
loadConsoleWidget | function | function (callback)
Load the Console widget via chilipeppr.load() |
loadWorkspaceMenu | function | function (callback)
Load the workspace menu and show the pubsubviewer and fork links using
our pubsubviewer widget that makes those links for us. |
diff --git a/auto-generated-workspace.html b/auto-generated-workspace.html
index aa78712..a793d13 100644
--- a/auto-generated-workspace.html
+++ b/auto-generated-workspace.html
@@ -163,6 +163,7 @@
this.loadTemplateWidget();
this.loadSenscapeBootloaderWidget();
this.loadLuaEditorWidget();
+ this.loadDropTestWidget();
// Create our workspace upper right corner triangle menu
this.loadWorkspaceMenu();
@@ -284,6 +285,27 @@
);
}
);
+ },
+ /**
+ * Load Senscape Bootloader Wedget via chilipeppr.load()
+ */
+ loadDropTestWidget: function(callback) {
+ chilipeppr.load(
+ "#drop-test-instance",
+ "http://raw.githubusercontent.com/chilipeppr/elem-dragdrop/master/auto-generated-widget.html",
+ function() {
+ // Callback after widget loaded into #myDivElemDragdrop
+ // Now use require.js to get reference to instantiated widget
+ cprequire(
+ ["inline:drop-test"], // the id you gave your widget
+ function(myObjElemDragdrop) {
+ // Callback that is passed reference to the newly loaded widget
+ console.log("Element / Drag Drop just got loaded.", myObjElemDragdrop);
+ myObjElemDragdrop.init();
+ }
+ );
+ }
+);
},
/**
* Load the Lua Editor Widget widget via chilipeppr.load()
@@ -410,6 +432,10 @@
+
+
+
+