Sign in
android
/
platform
/
external
/
cherry
/
d39d06eb32ac4f7e549ce2ead7dc4c44f9c3f50e
/
.
/
third_party
/
angular
/
docs
/
examples
/
example-example87
/
script.js
blob: 966f97a43420d9205f4c8ef815e7c9f6ab5ae21b [
file
]
angular
.
module
(
'docsTransclusionDirective'
,
[])
.
controller
(
'Controller'
,
[
'$scope'
,
function
(
$scope
)
{
$scope
.
name
=
'Tobias'
;
}])
.
directive
(
'myDialog'
,
function
()
{
return
{
restrict
:
'E'
,
transclude
:
true
,
templateUrl
:
'my-dialog.html'
};
});