Skip to content

Commit

Permalink
Previous commit did not work; fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
nathancarter committed Oct 26, 2017
1 parent 070abb9 commit 3b57a59
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion release/lurch-web-platform.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion release/lurch-web-platform.js.map

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions release/lurch-web-platform.litcoffee
Original file line number Diff line number Diff line change
Expand Up @@ -3324,8 +3324,7 @@ The plugin, when initialized on an editor, places an instance of the
height : 22px;
}
'
styleSheet = 'data:text/html;base64' + \
new Buffer( styleSheet ).toString 'base64'
styleSheet = 'data:text/css;base64,' + btoa styleSheet
tinymce.PluginManager.add 'groups', ( editor, url ) ->
editor.Groups = new Groups editor
editor.on 'init', ( event ) -> editor.dom.loadCSS styleSheet
Expand Down
3 changes: 1 addition & 2 deletions source/plugins/groupsplugin.litcoffee
Original file line number Diff line number Diff line change
Expand Up @@ -1665,8 +1665,7 @@ The plugin, when initialized on an editor, places an instance of the
height : 22px;
}
'
styleSheet = 'data:text/html;base64' + \
new Buffer( styleSheet ).toString 'base64'
styleSheet = 'data:text/css;base64,' + btoa styleSheet
tinymce.PluginManager.add 'groups', ( editor, url ) ->
editor.Groups = new Groups editor
editor.on 'init', ( event ) -> editor.dom.loadCSS styleSheet
Expand Down

0 comments on commit 3b57a59

Please sign in to comment.