Ticket #5885: 5885.patch
File 5885.patch, 673 bytes (added by , 13 years ago) |
---|
-
_source/core/env.js
73 73 74 74 mobile : ( agent.indexOf( 'mobile' ) > -1 ), 75 75 76 iphone : ( agent.indexOf( 'iphone' ) > -1 ), 77 78 ipad : ( agent.indexOf( 'ipad' ) > -1 ), 79 76 80 isCustomDomain : function() 77 81 { 78 82 var domain = document.domain, … … 183 187 * alert( "Your browser is pretty cool!" ); 184 188 */ 185 189 env.isCompatible = 190 !env.ipad && 191 !env.iphone && 186 192 !env.mobile && ( 187 193 ( env.ie && version >= 6 ) || 188 194 ( env.gecko && version >= 10801 ) ||