javascript - Handlebar and Safari 9 issue -


my code in .handlebar file as:

<div class='module-sequence-padding'></div> <div class='module-sequence-footer clearfix'>   <div class="module-sequence-footer-content">     {{#if previous.show}}       <a href="{{previous.url}}" role="button" class="pull-left" data-tooltip="right" data-html-tooltip-title="{{previous.tooltip}}" aria-describedby="msf{{instancenumber}}-previous-desc">         <i class="icon-mini-arrow-left"></i>{{#t 'previous'}}previous{{/t}}         <span id="msf{{instancenumber}}-previous-desc" class="hidden" hidden>{{previous.tooltiptext}}</span>       </a>     {{/if}}      {{#if next.show}}       <a href="{{next.url}}" role="button" class="pull-right bordered" data-tooltip="left" data-html-tooltip-title="{{next.tooltip}}" aria-describedby="msf{{instancenumber}}-next-desc">         {{#t 'next'}}next{{/t}}<i class="icon-mini-arrow-right"></i>         <span id="msf{{instancenumber}}-next-desc" class="hidden" hidden>{{next.tooltiptext}}</span>       </a>     {{/if}}   </div> </div> 

the above code displayed in chrome not on safari.

on safari getting error rangeerror: invalid date following code:

  delivery = ajax({     url: options.deliveryurl,     type: 'post',     global: false, # don't whine user if fails     headers: json_headers,     data: json.stringify({       quiz_submission_events: eventset.tojson()     })   }) 

can please help.


Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -