Remove extraneous white space

This commit is contained in:
Blade Barringer
2015-08-14 07:40:07 -05:00
parent 6be339fc77
commit 998e336818

View File

@@ -124,7 +124,7 @@
if(removeWatch) if(removeWatch)
{ {
doRemoveWatch(); doRemoveWatch();
} }
}; };
@@ -144,9 +144,9 @@
habitrpg.filter('markdown', function() { habitrpg.filter('markdown', function() {
return function(input){ return function(input){
var html = md.toHtml(input); var html = md.toHtml(input);
html = html.replace(' href',' target="_self" href'); html = html.replace(' href',' target="_self" href');
return html; return html;
}; };
}); });