modified exec_body_scripts to load external scripts. finally moved all the js files out of tpls into their own js

todo: still need to organize the individual scripts client side,
This commit is contained in:
psychobunny
2013-05-29 12:17:44 -04:00
parent 9c546c92ad
commit 34131ad46c
23 changed files with 1326 additions and 1340 deletions

15
public/src/forum/users.js Normal file
View File

@@ -0,0 +1,15 @@
(function() {
$(document).ready(function() {
$('.reputation').each(function(index, element) {
$(element).html(app.addCommas($(element).html()));
});
$('.postcount').each(function(index, element) {
$(element).html(app.addCommas($(element).html()));
});
});
}());