Commit 6937e2ca authored by Seth Girvin's avatar Seth Girvin
Browse files

Access character using charAt for IE7 compatibility

parent cb1152a8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@ function defs(name) {
  if (arguments.length === 2) {
    var def = arguments[1];
    if (typeof def === 'string') {
      if (def[0] === '+') {
      if (def.charAt(0) === '+') {
        defs[name] = parseProj(arguments[1]);
      }
      else {