Skip to content

Instantly share code, notes, and snippets.

@dmorilha
Created January 31, 2013 22:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dmorilha/4687222 to your computer and use it in GitHub Desktop.
Save dmorilha/4687222 to your computer and use it in GitHub Desktop.
defaults.json = {
settings: ["master"],
array: [a, b, c]
};
application.json = {[
{
settings: ["master"],
specs: {
B: {
base: A
}
}
}, {
settings: ["specialized"],
specs: {
A: {
array: [d, e, f]
}
}
}
};
ac.config.get('array')
//returns
[ a, b, c, d, e, f]
//expected
[d, e, f]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment