Code

Moved ListTest from main root to a tests directory.
[gosa.git] / tests / ListTest / 3 / include / warning.js
1 function question(text, url)
2 {
3   if(document.mainform.ignore){
4         location.href= url;
5         return true;
6   }
7   if(confirm(text)){
8         location.href= url;
9         return true;
10   }
11   return false;
12 }