mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
11 lines
237 B
JavaScript
11 lines
237 B
JavaScript
angular.module('backstretch', []);
|
|
angular.module('backstretch')
|
|
.directive('backstretch', function () {
|
|
return {
|
|
restrict: 'A',
|
|
link: function (scope, element, attr) {
|
|
element.backstretch(attr.backgroundUrl);
|
|
}
|
|
}
|
|
});
|