login only with pond now

This commit is contained in:
Jeena 2014-02-21 11:01:11 +01:00
parent 69c5c270ad
commit 5a0950a8ee
6 changed files with 39 additions and 36 deletions

View file

@ -63,5 +63,10 @@ String.prototype.capitalize = function() {
return this.charAt(0).toUpperCase() + this.slice(1);
}
String.prototype.urlify = function() {
var exp = /^\>(\b(http):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig;
return this.replace(exp,"<a href='$1'>$1</a>");
}
if(!window.app) window.app = new App();