Quote:
Originally Posted by cc10
I would like it to show, weeks days hours mins secs.
|
Changing this part of the code
omitWeeks: true to
omitWeeks: false should fix your problem
For reference if you wanted to remove the weeks part entirely you would leave it set at true and then would need to replace this part of the code
Code:
<div class="dash first weeks_dash">
<span class="dash_title">Weeks</span>
<div class="digit">0</div>
<div class="digit">0</div>
</div>
<div class="dash days_dash">
<span class="dash_title">Days</span>
<div class="digit">0</div>
<div class="digit">0</div>
</div>
With this
Code:
<div class="dash first days_dash">
<span class="dash_title">Days</span>
<div class="digit">0</div>
<div class="digit">0</div>
</div>
That would remove the WEEKS completely