So, other than going around every template and converting
to
Is there an easy way to do this? I want to debug all the core js
I want to start creating add-ons (some for my own sanity), and I want to play around with the core script in order to figure out what everything does (I've completed the 17 "new" video tutorials by Kier)
One of the things that is annoying me is in the Admin page, when you refine a search, if you drag your mouse over the text in the refine search input fields, but let go outside, the refine search overlay vanishes (I know its removing is-active is-complete from the .js-filterMenuBody
Anyway, I'm going to be checking lots of js files (I was hoping it was in the xf/admin.js but, I'm not so sure anymore)
Is here and easy way to turn all js to non min version so I can poke them
I've had a look here:
xenforo.com
I've already set
Code:
<xf:js src="xf/admin.js" min="1" />
Code:
<xf:js src="xf/admin.js" />
Is there an easy way to do this? I want to debug all the core js
I want to start creating add-ons (some for my own sanity), and I want to play around with the core script in order to figure out what everything does (I've completed the 17 "new" video tutorials by Kier)
One of the things that is annoying me is in the Admin page, when you refine a search, if you drag your mouse over the text in the refine search input fields, but let go outside, the refine search overlay vanishes (I know its removing is-active is-complete from the .js-filterMenuBody
Anyway, I'm going to be checking lots of js files (I was hoping it was in the xf/admin.js but, I'm not so sure anymore)
Is here and easy way to turn all js to non min version so I can poke them
I've had a look here:
Development tools | XenForo
XenForo provides developers with a number of built in tools you can use to expedite development of add-ons and we'll go through some of these below.
I've already set
Code:
$config['debug'] = true; // makes no difference, I'm tying to figure out how to not use javasrcript minification
$config['development']['enabled'] = true;
$config['development']['defaultAddOn'] = 'Demo/Pad';