Skip to content

Commit

Permalink
Fixed bug with html embedding
Browse files Browse the repository at this point in the history
  • Loading branch information
cvasseng committed Sep 13, 2016
1 parent ec8e361 commit ef75d9f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/editors/highed.editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
chartCustomizer = highed.ChartCustomizer(customizerStep.body),

dataExpStep = wizbar.addStep({title: 'Export', id: 'export'}),
dataExp = highed.Exporter(dataExpStep.body, exporter),
dataExp = highed.Exporter(dataExpStep.body, properties.exporter),

cmenu = highed.ContextMenu([
{
Expand Down
2 changes: 1 addition & 1 deletion src/ui/highed.chartpreview.js
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ highed.ChartPreview = function (parent, attributes) {

//This should be part of the series
if (!highed.isNull(r.data)) {
delete r['data'];
//delete r['data'];
}

return r;
Expand Down
1 change: 1 addition & 0 deletions src/ui/highed.exporter.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

///////////////////////////////////////////////////////////////////////////

//Hides unwanted stuff
function updateOptions() {
if (!properties.options.html) {
htmlTab.hide();
Expand Down

0 comments on commit ef75d9f

Please sign in to comment.