Tooltip for view count on user's page does not display accurate view count, it seems to just display "thousands" if the viewcount > 1000. Everywhere else the tooltip displays the accurate value, and I was expecting the accurate view count here.
See for example http://stackoverflow.com/users/1431/juha-syrjala
The actual view count for that question is 4,196 at the time I am writing this.
The html fragment in question is this:
<div class="views">
<div class="mini-counts warm"><span title='thousand'>4</span></div>
<div class='warm'>kviews</div>
</div>
It should be like something like this:
<div class="views">
<div class="mini-counts warm" title="4,196 views">4</div>
<div class='warm' title="4,196 views">kviews</div>
</div>