Skip to content

Instantly share code, notes, and snippets.

@fraserxu
Last active December 16, 2015 19:49
Show Gist options
  • Save fraserxu/5487466 to your computer and use it in GitHub Desktop.
Save fraserxu/5487466 to your computer and use it in GitHub Desktop.
页面底部
module.directive('footer', function () {
return {
restrict: 'A', //这里意味着我们会把它作为一个属性而不是一个单独的页面标签来使用
replace: true,
templateUrl: "/js/directives/footer.html",
controller: ['$scope', '$filter', function ($scope, $filter) {
// 控制器
}]
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment