Skip to content

Commit 53c7aed

Browse files
committed
Extending Widgets: Typo
Closes jquerygh-488
1 parent d617895 commit 53c7aed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

page/jquery-ui/widget-factory/extending-widgets.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ To make the parent's methods available, the widget factory provides two methods
6565

6666
### Using `_super()` and `_superApply()` to Access Parents
6767

68-
[`_super()`](http://api.jqueryui.com/jquery.widget/#method-_super) and [`_superApply()`](http://api.jqueryui.com/jquery.widget/#method-_superApply) invoke methods of the same same in the parent widget. Refer to the following example. Like the previous one, this example also overrides the `open()` method to log `"open"`. However, this time `_super()` is run to invoke dialog's `open()` and open the dialog.
68+
[`_super()`](http://api.jqueryui.com/jquery.widget/#method-_super) and [`_superApply()`](http://api.jqueryui.com/jquery.widget/#method-_superApply) invoke methods of the same name in the parent widget. Refer to the following example. Like the previous one, this example also overrides the `open()` method to log `"open"`. However, this time `_super()` is run to invoke dialog's `open()` and open the dialog.
6969

7070
```
7171
$.widget( "custom.superDialog", $.ui.dialog, {

0 commit comments

Comments
 (0)