Skip to content
Snippets Groups Projects

Issue #3511224: add cspell project words and some spelling fixes

Merged aaron.ferris requested to merge issue/jstimer-3511224:3511224/cspell into 2.0.x
3 files
+ 16
4
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 2
2
@@ -50,7 +50,7 @@
// The timing loop.
Drupal.jstimer.timer_loop = function() {
// run backwards so we can remove items and not messup the loop data.
// run backwards so we can remove items and not impact the loop data.
for (var i = Drupal.jstimer.timer_stack.length - 1; i >= 0; i--) {
if ( Drupal.jstimer.timer_stack[i].update() == false ) {
Drupal.jstimer.timer_stack.splice(i, 1);
@@ -86,7 +86,7 @@
//timezone handling
var zone_offset = 0; // in minutes
var zone_plus_minus = date_bits[7] && date_bits[7].charAt(0);
// get offset from isostring time to Z time
// get offset from iso string time to Z time
if ( zone_plus_minus != 'Z' ) {
zone_offset = ((date_bits[8] || 0) * 60) + (Number(date_bits[9]) || 0);
if ( zone_plus_minus != '-' ) {
Loading