Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
fix(theming): fix typo in warning message
Browse files Browse the repository at this point in the history
closes #1430
  • Loading branch information
rschmukler committed Feb 9, 2015
1 parent a833843 commit 8a6eb7e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/tooltip/demoBasicUsage/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ <h1 class="md-toolbar-tools">
</p>

<md-button class="md-fab md-fab-top-left left" aria-label="Insert Drive">
<md-icon icon="/img/icons/ic_insert_drive_file_24px.svg" style="width: 24px; height: 24px;"></md-icon>
<md-icon svg-src="img/icons/ic_insert_drive_file_24px.svg" style="width: 24px; height: 24px;"></md-icon>
<md-tooltip md-visible="demo.showTooltip">
Insert Drive
</md-tooltip>
</md-button>
<md-button class="md-fab md-fab-top-right right" aria-label="Photos">
<md-icon icon="/img/icons/ic_photo_24px.svg" style="width: 24px; height: 24px;"></md-icon>
<md-icon svg-src="img/icons/ic_photo_24px.svg" style="width: 24px; height: 24px;"></md-icon>
<md-tooltip>
Photos
</md-tooltip>
Expand Down
2 changes: 1 addition & 1 deletion src/core/services/theming/theming.js
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ function generateThemes($injector) {
});
if (theme.colors.primary.name == theme.colors.accent.name) {
console.warn("$mdThemingProvider: Using the same palette for primary and" +
"accent. This violates the material design spec.");
" accent. This violates the material design spec.");
}
});

Expand Down

0 comments on commit 8a6eb7e

Please sign in to comment.