manage wallets uses modal

This commit is contained in:
Gustavo Maximiliano Cortez 2014-12-09 12:48:03 -03:00
commit 5873f30262
6 changed files with 113 additions and 74 deletions

View file

@ -17,6 +17,9 @@ var isMobile = {
Windows: function() {
return !!navigator.userAgent.match(/IEMobile/i);
},
Safari: function() {
return Object.prototype.toString.call(window.HTMLElement).indexOf('Constructor') > 0;
},
any: function() {
return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Opera() || isMobile.Windows());
}