Subversion Repositories bacoAlunos

Rev

Rev 1769 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1769 Rev 1848
Line -... Line 1...
-
 
1
 
-
 
2
String.prototype.replaceAll = String.prototype.replaceAll || function(needle, replacement) {
-
 
3
    return this.split(needle).join(replacement);
-
 
4
};
-
 
5
 
-
 
6
 
1
function set(form, value)
7
function set(form, value)
2
{
8
{
3
    form.dispatch.value = value;
9
    form.dispatch.value = value;
4
}
10
}
5
 
11