mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-16 22:10:25 +00:00
Fix for #3185 - Dynamic Page load sample: In-Memory broken in IE7
- Removed trailing commas that choke IE.
This commit is contained in:
parent
8975f5b9a0
commit
ed05ff8509
1 changed files with 13 additions and 13 deletions
|
|
@ -18,13 +18,13 @@ var categoryData = {
|
|||
description: "All your favorites from aardvarks to zebras.",
|
||||
items: [
|
||||
{
|
||||
name: "Pets",
|
||||
name: "Pets"
|
||||
},
|
||||
{
|
||||
name: "Farm Animals",
|
||||
name: "Farm Animals"
|
||||
},
|
||||
{
|
||||
name: "Wild Animals",
|
||||
name: "Wild Animals"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
@ -33,25 +33,25 @@ var categoryData = {
|
|||
description: "Fresh colors from the magic rainbow.",
|
||||
items: [
|
||||
{
|
||||
name: "Blue",
|
||||
name: "Blue"
|
||||
},
|
||||
{
|
||||
name: "Green",
|
||||
name: "Green"
|
||||
},
|
||||
{
|
||||
name: "Orange",
|
||||
name: "Orange"
|
||||
},
|
||||
{
|
||||
name: "Purple",
|
||||
name: "Purple"
|
||||
},
|
||||
{
|
||||
name: "Red",
|
||||
name: "Red"
|
||||
},
|
||||
{
|
||||
name: "Yellow",
|
||||
name: "Yellow"
|
||||
},
|
||||
{
|
||||
name: "Violet",
|
||||
name: "Violet"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
@ -60,13 +60,13 @@ var categoryData = {
|
|||
description: "Everything from cars to planes.",
|
||||
items: [
|
||||
{
|
||||
name: "Cars",
|
||||
name: "Cars"
|
||||
},
|
||||
{
|
||||
name: "Planes",
|
||||
name: "Planes"
|
||||
},
|
||||
{
|
||||
name: "Construction",
|
||||
name: "Construction"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue