Changed .html() to .text() on two lines in the dropdown component, which prevents the encoded "&" issue described in issue 487. The dropdown component displays the selected option value with interpolation, so the current use of .html() cannot be properly utilized without ng-bind-html and ngSanitize anyway.
Coverage remained the same at 97.771% when pulling aea717fa4bb9680896083c384d4949b4c6f35631 on nightullr:hotfix487 into 6a36e48e6e4c37ba3f8627e466151ba539bdd330 on ngOfficeUIFabric:dev.
Changed
.html()
to.text()
on two lines in the dropdown component, which prevents the encoded "&" issue described in issue 487. The dropdown component displays the selected option value with interpolation, so the current use of.html()
cannot be properly utilized without ng-bind-html and ngSanitize anyway.Closes #487