fixed indents

This commit is contained in:
Baris Usakli
2013-06-20 16:48:17 -04:00
parent 64a9e5844d
commit 9309722898
18 changed files with 342 additions and 343 deletions

View File

@@ -1,15 +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()));
});
});
$(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()));
});
});
}());