[Pkg-javascript-commits] [ltx] 264/469: replace const with var for ie support
Jonas Smedegaard
dr at jones.dk
Wed Aug 31 13:03:10 UTC 2016
This is an automated email from the git hooks/post-receive script.
js pushed a commit to branch master
in repository ltx.
commit b9809c5615c3a20fabc3c11e9e7342f25b5d2fa8
Author: Ryan Curtis <rbrcurtis at gmail.com>
Date: Thu Aug 29 14:14:57 2013 -0400
replace const with var for ie support
---
.gitignore | 1 +
lib/sax_ltx.js | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..3c3629e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+node_modules
diff --git a/lib/sax_ltx.js b/lib/sax_ltx.js
index 5514913..394239f 100644
--- a/lib/sax_ltx.js
+++ b/lib/sax_ltx.js
@@ -1,7 +1,7 @@
var util = require('util');
var events = require('events');
-const STATE_TEXT = 0,
+var STATE_TEXT = 0,
STATE_IGNORE_TAG = 1,
STATE_TAG_NAME = 2,
STATE_TAG = 3,
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/ltx.git
More information about the Pkg-javascript-commits
mailing list