Fixed hard coded paths, removed html path in markup

This commit is contained in:
Shannon Deminick
2013-06-03 21:43:46 -10:00
parent 34cb8ea633
commit 13c2aaf346
2 changed files with 6 additions and 6 deletions

View File

@@ -8,7 +8,7 @@
<html lang="en">
<head>
<base href="@GlobalSettings.Path.EnsureEndsWith('/')" />
@*<base href="@GlobalSettings.Path.EnsureEndsWith('/')" />*@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

View File

@@ -221,7 +221,7 @@ angular.module('umbraco.directives', [])
restrict: 'E',
replace: true,
transclude: 'true',
templateUrl: '/belle/views/directives/umb-panel.html'
templateUrl: 'views/directives/umb-panel.html'
};
})
@@ -230,7 +230,7 @@ angular.module('umbraco.directives', [])
restrict: 'E',
replace: true,
transclude: 'true',
templateUrl: '/belle/views/directives/umb-header.html',
templateUrl: 'views/directives/umb-header.html',
compile: function compile(tElement, tAttrs, transclude) {
return function postLink(scope, iElement, iAttrs, controller) {
@@ -275,7 +275,7 @@ angular.module('umbraco.directives', [])
restrict: 'E',
replace: true,
transclude: 'true',
templateUrl: '/belle/views/directives/umb-tab-view.html'
templateUrl: 'views/directives/umb-tab-view.html'
};
})
@@ -290,7 +290,7 @@ angular.module('umbraco.directives', [])
id: '@'
},
templateUrl: '/belle/views/directives/umb-tab.html'
templateUrl: 'views/directives/umb-tab.html'
};
})
@@ -301,7 +301,7 @@ angular.module('umbraco.directives', [])
restrict: 'E',
replace: true,
transclude: 'true',
templateUrl: '/belle/views/directives/umb-property.html'
templateUrl: 'views/directives/umb-property.html'
};
})