aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/content/guide/directive.ngdoc8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/content/guide/directive.ngdoc b/docs/content/guide/directive.ngdoc
index bed1621a..4fd53352 100644
--- a/docs/content/guide/directive.ngdoc
+++ b/docs/content/guide/directive.ngdoc
@@ -591,10 +591,10 @@ Therefore the final directive definition looks something like this:
<pre>
transclude: true,
scope: {
- title: 'bind', // set up title to accept data-binding
- onOk: 'expression', // create a delegate onOk function
- onCancel: 'expression', // create a delegate onCancel function
- show: 'accessor' // create a getter/setter function for visibility.
+ title: '=', // set up title to accept data-binding
+ onOk: '&', // create a delegate onOk function
+ onCancel: '&', // create a delegate onCancel function
+ show: '='
}
</pre>