Skip to content

Commit 3ef59f4

Browse files
committed
fix parsing issue
1 parent e004d59 commit 3ef59f4

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Diff for: changelog.markdown

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1+
# 1.2.0 Meltdown
2+
3+
- Fixed a bug which prevented the change tracking API from parsing the JSON values in localStorage
4+
15
# 1.1.1 Meltdown
26

3-
- Fix a bug in change tracking API where exceptions would be thrown
7+
- Fixed a bug in change tracking API where exceptions would be thrown
48

59
# 1.1.0 Band of Brothers
610

Diff for: tracking.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function change (e) {
2323
}
2424

2525
function fire (listener) {
26-
listener(e.newValue, e.oldValue, e.url || e.uri);
26+
listener(JSON.parse(e.newValue), JSON.parse(e.oldValue), e.url || e.uri);
2727
}
2828
}
2929

0 commit comments

Comments
 (0)