refactor(icon): rename icon to ion-icon

Closes #855
This commit is contained in:
Adam Bradley
2016-01-05 22:27:04 -06:00
parent 8987e4b932
commit 883e1b68b1
62 changed files with 307 additions and 303 deletions

View File

@ -123,12 +123,12 @@ export class Button {
}
} else if (childNode.nodeType === 1) {
if (childNode.nodeName === 'ICON') {
if (childNode.nodeName === 'ION-ICON') {
// icon element node
nodes.push(ICON);
} else {
// element other than an <icon>
// element other than an <ion-icon>
nodes.push(TEXT);
}
}