Skip to content

Commit

Permalink
Fix #32 no constructor found (ticket 464960)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jelte Lagendijk committed Mar 10, 2016
1 parent 778420e commit 9c39917
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "CKEditorForMendix",
"version": "2.0.3",
"version": "2.0.4",
"description": "A new WYSIWYG editor for Mendix that also has the ability to create 'MicroFlow links in your HTML output.",
"license": "Apache License, Version 2",
"author": "Mendix",
Expand Down
6 changes: 5 additions & 1 deletion src/CKEditorForMendix/widget/CKEditorForMendix.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ define([
"dojo/_base/array",
"dojo/_base/lang",
"dojo/text",
"CKEditorForMendix/widget/lib/jquery-1.11.1",
"CKEditorForMendix/widget/lib/jquery",
"CKEditorForMendix/widget/lib/ckeditor",
"dojo/text!CKEditorForMendix/widget/templates/CKEditorForMendix.html",
"CKEditorForMendix/widget/lib/jquery.oembed"
Expand Down Expand Up @@ -614,3 +614,7 @@ define([
}
});
});

require(["CKEditorForMendix/widget/CKEditorForMendix"], function () {
"use strict";
});
10 changes: 5 additions & 5 deletions src/CKEditorForMendix/widget/CKEditorViewerForMendix.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
/*jslint white:true, nomen: true, plusplus: true */
/*global logger */
/*mendix */

define([
"dojo/_base/declare",
"mxui/widget/_WidgetBase",
Expand All @@ -10,7 +6,7 @@ define([
"dojo/_base/array",
"dojo/_base/lang",
"dojo/text",
"CKEditorForMendix/widget/lib/jquery-1.11.1",
"CKEditorForMendix/widget/lib/jquery",
"CKEditorForMendix/widget/lib/ckeditor_viewer",
"dojo/text!CKEditorForMendix/widget/templates/CKEditorViewerForMendix.html"
], function (declare, _WidgetBase, _TemplatedMixin, domStyle, dojoArray, lang, text, _jQuery, _CKEditorViewer, widgetTemplate) {
Expand Down Expand Up @@ -115,3 +111,7 @@ define([

});
});

require(["CKEditorForMendix/widget/CKEditorViewerForMendix"], function () {
"use strict";
});
File renamed without changes.
2 changes: 1 addition & 1 deletion src/package.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://www.mendix.com/package/1.0/">
<clientModule name="CKEditorForMendix" version="2.0.3" xmlns="http://www.mendix.com/clientModule/1.0/">
<clientModule name="CKEditorForMendix" version="2.0.4" xmlns="http://www.mendix.com/clientModule/1.0/">
<widgetFiles>
<widgetFile path="CKEditorForMendix/CKEditorForMendix.xml"/>
<widgetFile path="CKEditorForMendix/CKEditorViewerForMendix.xml"/>
Expand Down
Binary file modified test/widgets/CKEditorForMendix.mpk
Binary file not shown.

0 comments on commit 9c39917

Please sign in to comment.