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

Commit

Permalink
fix(build): fix a warning when running local server
Browse files Browse the repository at this point in the history
A warning was being logged when running the docs site locally. It was because the @ngInject in the doc string isn't considered a valid tag.

Closes #8463
  • Loading branch information
crisbeto authored and ThomasBurleson committed May 16, 2016
1 parent 40ea6ec commit b09dcbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/util/media.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ angular.module('material.core')
* $scope.anotherCustom = $mdMedia('max-width: 300px');
* });
* </hljs>
* @ngInject
*/

/* @ngInject */
function mdMediaFactory($mdConstant, $rootScope, $window) {
var queries = {};
var mqls = {};
Expand Down

0 comments on commit b09dcbb

Please sign in to comment.