Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reference to folder name changes so demo works #29

Merged
merged 1 commit into from
Apr 6, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DemoGoogleExample/gs/Code.gs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function onInstall(e) {
* project file.
*/
function showSidebar() {
var ui = HtmlService.createTemplateFromFile('Demo.GoogleExample/html/Sidebar')
var ui = HtmlService.createTemplateFromFile('DemoGoogleExample/html/Sidebar')
.evaluate()
.setTitle(SIDEBAR_TITLE)
.setSandboxMode(HtmlService.SandboxMode.IFRAME);
Expand All @@ -45,7 +45,7 @@ function showSidebar() {
* project file.
*/
function showDialog() {
var ui = HtmlService.createTemplateFromFile('Demo.GoogleExample/html/Dialog')
var ui = HtmlService.createTemplateFromFile('DemoGoogleExample/html/Dialog')
.evaluate()
.setWidth(400)
.setHeight(190)
Expand Down
4 changes: 2 additions & 2 deletions DemoGoogleExample/html/Dialog.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<base target="_top">
<!-- Use a templated HTML printing scriptlet to import common stylesheet -->
<?!= HtmlService.createHtmlOutputFromFile('Demo.GoogleExample/html/Stylesheet').getContent(); ?>
<?!= HtmlService.createHtmlOutputFromFile('DemoGoogleExample/html/Stylesheet').getContent(); ?>
</head>
<body>
<!-- Below is the HTML code that defines the dialog element structure. -->
Expand All @@ -27,6 +27,6 @@
</div>

<!-- Use a templated HTML printing scriptlet to import JavaScript. -->
<?!= HtmlService.createHtmlOutputFromFile('Demo.GoogleExample/html/DialogJavaScript').getContent(); ?>
<?!= HtmlService.createHtmlOutputFromFile('DemoGoogleExample/html/DialogJavaScript').getContent(); ?>
</body>
</html>
4 changes: 2 additions & 2 deletions DemoGoogleExample/html/Sidebar.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<base target="_top">
<!-- Use a templated HTML printing scriptlet to import common stylesheet -->
<?!= HtmlService.createHtmlOutputFromFile('Demo.GoogleExample/html/Stylesheet').getContent(); ?>
<?!= HtmlService.createHtmlOutputFromFile('DemoGoogleExample/html/Stylesheet').getContent(); ?>
</head>
<body>
<!-- Below is the HTML code that defines the sidebar element structure. -->
Expand Down Expand Up @@ -31,6 +31,6 @@
</div>

<!-- Use a templated HTML printing scriptlet to import JavaScript. -->
<?!= HtmlService.createHtmlOutputFromFile('Demo.GoogleExample/html/SidebarJavaScript').getContent(); ?>
<?!= HtmlService.createHtmlOutputFromFile('DemoGoogleExample/html/SidebarJavaScript').getContent(); ?>
</body>
</html>