Skip to content

Commit 1efa96f

Browse files
committed
Hopefully fix broken PR about installing inside a folder
1 parent 7d42dc4 commit 1efa96f

File tree

1 file changed

+5
-5
lines changed
  • src/UmbracoFileSystemProviders.Azure.Installer/Configurator/Views

1 file changed

+5
-5
lines changed

src/UmbracoFileSystemProviders.Azure.Installer/Configurator/Views/Configure.ascx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<%@ Control Language="c#" AutoEventWireup="True" TargetSchema="http://schemas.microsoft.com/intellisense/ie5"%>
22

3-
<script src="~/umbraco/lib/angular/1.1.5/angular.min.js"></script>
4-
<script src="~/App_Plugins/UmbracoFileSystemProviders/Azure/Install/Configurator/Controllers/Configure.js"></script>
3+
<script src="<%=ResolveUrl("~/umbraco/lib/angular/1.1.5/angular.min.js") %>"></script>
4+
<script src="<%=ResolveUrl("~/App_Plugins/UmbracoFileSystemProviders/Azure/Install/Configurator/Controllers/Configure.js")%>"></script>
55

66
<div ng-app ="UFSPLoader">
77
<div ng-controller="Loader">
88
<div class="row">
99
<div class="span1">
10-
<img src="~/App_Plugins/UmbracoFileSystemProviders/Azure/Install/azure-logo-32.png"/>
10+
<img src="<%=ResolveUrl("~/App_Plugins/UmbracoFileSystemProviders/Azure/Install/azure-logo-32.png")%>"/>
1111
</div>
1212
<div><h4>Umbraco Azure File System Provider</h4></div>
1313
</div>
@@ -23,8 +23,8 @@
2323
<ng-form name="form">
2424
<label class="control-label" for="param.key">{{ capitalizeFirstLetter(param.key) }}</label>
2525
<div class="controls">
26-
<span ng-if="getInputType(param.key) === 'checkbox'" ng-include="'/App_Plugins/UmbracoFileSystemProviders/Azure/Install/Configurator/Views/checkbox.htm'"></span>
27-
<span ng-if="getInputType(param.key) === 'text'" ng-include="'/App_Plugins/UmbracoFileSystemProviders/Azure/Install/Configurator/Views/textfield.htm'"></span>
26+
<span ng-if="getInputType(param.key) === 'checkbox'" ng-include="'<%=ResolveUrl("/App_Plugins/UmbracoFileSystemProviders/Azure/Install/Configurator/Views/checkbox.htm")%>'"></span>
27+
<span ng-if="getInputType(param.key) === 'text'" ng-include="'<%=ResolveUrl("/App_Plugins/UmbracoFileSystemProviders/Azure/Install/Configurator/Views/textfield.htm")%>'"></span>
2828
</div>
2929
<span data-ng-show=" {{'form.'+param.key+'.$dirty && form.'+param.key+'.$error.required'}}">Required!</span>
3030
</ng-form>

0 commit comments

Comments
 (0)