Fixed custom handlebars handlers

This commit is contained in:
Benoit Schweblin 2018-02-07 21:25:29 +00:00
parent 3fa2d7b73e
commit f92ba9340a
4 changed files with 4 additions and 5 deletions

View File

@ -144,7 +144,7 @@ $tour-step-width: 220px;
.tour-step__inner { .tour-step__inner {
position: absolute; position: absolute;
background-color: $tour-step-background; background-color: $tour-step-background;
padding: 1.25em; padding: 1.5em 1em 1em;
font-size: 0.9em; font-size: 0.9em;
line-height: 1.33; line-height: 1.33;
width: $tour-step-width; width: $tour-step-width;
@ -175,7 +175,7 @@ $tour-step-width: 220px;
.tour-step--welcome &, .tour-step--welcome &,
.tour-step--end & { .tour-step--end & {
left: -$tour-step-width/2; left: -$tour-step-width/2;
top: 30px; top: 36px;
border-bottom-right-radius: 0; border-bottom-right-radius: 0;
&::before { &::before {

View File

@ -15,7 +15,6 @@
<icon-provider slot="icon" provider-id="couchdbWorkspace"></icon-provider> <icon-provider slot="icon" provider-id="couchdbWorkspace"></icon-provider>
<span>Add CouchDB workspace</span> <span>Add CouchDB workspace</span>
</menu-entry> </menu-entry>
<hr>
<menu-entry @click.native="manageWorkspaces"> <menu-entry @click.native="manageWorkspaces">
<icon-database slot="icon"></icon-database> <icon-database slot="icon"></icon-database>
<span>Manage workspaces</span> <span>Manage workspaces</span>

View File

@ -11,6 +11,6 @@ Handlebars.registerHelper('transform', function (options) {
Then use the helper in your template: Then use the helper in your template:
{{#transform}}{{{file.content.html}}}{{/transform}} {{#transform}}{{{files.0.content.html}}}{{/transform}}
*/ */

View File

@ -59,7 +59,6 @@ const whiteList = {
undefined: 1, undefined: 1,
safeEval: 1, safeEval: 1,
close: 1, close: 1,
Handlebars: 1,
}; };
let global = self; let global = self;
@ -80,6 +79,7 @@ while (global !== Object.prototype) {
}); });
global = Object.getPrototypeOf(global); global = Object.getPrototypeOf(global);
} }
self.Handlebars = Handlebars;
function safeEval(code) { function safeEval(code) {
eval(`"use strict";\n${code}`); // eslint-disable-line no-eval eval(`"use strict";\n${code}`); // eslint-disable-line no-eval