Fix occasional collapsibleTabs JS error
authorRoan Kattouw <roan.kattouw@gmail.com>
Thu, 4 Jul 2013 00:54:33 +0000 (17:54 -0700)
committerRoan Kattouw <roan.kattouw@gmail.com>
Thu, 4 Jul 2013 00:57:48 +0000 (17:57 -0700)
commite25445634ea4045f9945e892e6e2df389cb6f1c9
tree45429e222b4f1617b83fca34a0c8dd7779948e47
parentc497addae1e219c2434f9af69774288043a76056
Fix occasional collapsibleTabs JS error

vector/vector.js depends on $.fn.collapsibleTabs, but that's defined in
vector/collapsibleTabs.js which is loaded *after*. The only reason it
worked most of the time is because the invocation is wrapped in a document
ready callback. Most of the time, the document isn't ready yet when
vector.js runs, so the callback is deferred and $.fn.collapsibleTabs is
created before the callback runs. But if the document is already ready,
the callback runs immediately without $.fn.collapsibleTabs having been
created yet, and so it throws an error.

Fixed by including the .js files in the proper order.

Change-Id: If101efe82970bda7a39d827ce3c668abad6a5f5e
resources/Resources.php