Skip to content

Instantly share code, notes, and snippets.

@miwillhite
Created December 23, 2013 20:05
Show Gist options
  • Save miwillhite/8103738 to your computer and use it in GitHub Desktop.
Save miwillhite/8103738 to your computer and use it in GitHub Desktop.
storeControllers.directive('newPane', function() {
return {
restrict: 'E',
scope: {
},
controller: ['$scope, InstallationType',
function($scope, InstallationType) {
$scope.installation_types = InstallationType.query();
}],
templateUrl: '<%= asset_path 'assets/templates/stores/new-pane.html' %>'
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment