Moved popup windows into a specific folder

This commit is contained in:
unsettledgames 2021-07-15 18:43:59 +02:00
parent dcf896954f
commit 9540002c6e
12 changed files with 11 additions and 11 deletions

View File

@ -49,7 +49,7 @@ function compile_page(){
.pipe(include({includePaths: ['/svg']}))
.pipe(handlebars({encoding: 'utf8', debug: true, bustCache: true})
.partials('./views/[!index]*.hbs')
.partials('./views/[!index]*.hbs').partials('./views/popups/*.hbs')
//.helpers({ svg: hb_svg })
.helpers('./helpers/**/*.js')
.data({

View File

@ -26,16 +26,16 @@
{{> holders}}
<div id="pop-up-container">
{{> start-pixel-popup}}
{{> splash-page-popup}}
{{> sprite-resize-popup}}
{{> canvas-resize-popup}}
{{> palette-popup}}
{{> help-popup}}
{{> about-popup}}
{{> changelog-popup}}
{{> credits-popup}}
{{> settings-popup}}
{{> new-pixel}}
{{> splash-page}}
{{> sprite-resize}}
{{> canvas-resize}}
{{> palette}}
{{> help}}
{{> about}}
{{> changelog}}
{{> credits}}
{{> settings}}
</div>
<script src="/pixel-editor/pixel-editor.js"></script>