-
-
Notifications
You must be signed in to change notification settings - Fork 333
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(addon/components/paper-radio): moves respective logic to their …
…different implementations.
- Loading branch information
1 parent
9982aba
commit 04fc025
Showing
4 changed files
with
61 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
/** | ||
* @module ember-paper | ||
*/ | ||
import PaperRadioBase from './paper-radio-base'; | ||
import PaperRadio from './paper-radio'; | ||
|
||
/** | ||
* @class PaperRadio | ||
* @extends PaperRadioBase | ||
*/ | ||
export default class PaperRadioProxiable extends PaperRadioBase {} | ||
export default class PaperRadioProxiable extends PaperRadio { | ||
processProxy() { | ||
this.onClick(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters