Create browsers directory and browsers/common for common navigator.gssEap.js, move...
[gssweb.git] / browsers / chrome / app / gssweb_utils.js
1 console.log('Loading gssweb_utils.js - #1');
2
3 navigator.generateNonce = function() {
4   // TODO: Make sure that we don't have a collision!
5   // Random integer in the range [0..(2^32-1)]
6   return Math.floor(Math.random() * ( 4294967295 )) ;
7 }
8
9