I'm trying to apply a css class to a navigation bar panel if the current page URL is the URL of what the panel points to.
<div class="panel panel-default"
data-bind="css: {'test-class': window.location === My.Constants.appRoot
+ '/thispage'}">
This binding doesn't seem to work. Anyone have ideas on whether or not this should work? Thanks!