Merge "Change templateUrl to absolute path"

This commit is contained in:
Jenkins 2014-04-03 10:49:46 +00:00 committed by Gerrit Code Review
commit bebb039eab

View File

@ -1,9 +1,9 @@
angular.module('hz').directive('hrNumberPicker', function() {
angular.module('hz').directive('hrNumberPicker', ['hzConfig', function(hzConfig) {
return {
restrict: 'A',
replace: true,
scope: { initial_value: '=value' },
templateUrl: '../../static/infrastructure/angular_templates/numberpicker.html',
templateUrl: hzConfig.static_url + 'infrastructure/angular_templates/numberpicker.html',
link: function(scope, element, attrs) {
input = element.find('input').first();
angular.forEach(element[0].attributes, function(attribute) {
@ -33,4 +33,4 @@ angular.module('hz').directive('hrNumberPicker', function() {
};
}
};
});
}]);