Removed unused parameter

Closes #3810
This commit is contained in:
unknown 2015-08-24 20:04:50 +03:00 committed by Aviel Fedida
parent 9262727ae1
commit 944ccc9a94
1 changed files with 2 additions and 2 deletions

View File

@ -67,14 +67,14 @@ Here is a trivial example of a tooltip decorator. The directive will log a toolt
'text: tooltip' | - DOM element tooltip property should be
], | mapped to the directive text property.
host: { | List which events need to be mapped.
'(mouseover)': 'show()' | - Invoke the show() method every time
'(mouseover)': 'show()' | - Invoke the show() method every time
} | the mouseover event is fired.
}) |
class Form { | Directive controller class, instantiated
| when CSS matches.
text:string; | text property on the Directive Controller.
|
show(event) { | Show method which implements the show action.
show() { | Show method which implements the show action.
console.log(this.text); |
}
}