Ticket #5434: 5434_2.patch
File 5434_2.patch, 533 bytes (added by , 13 years ago) |
---|
-
_source/core/env.js
75 75 76 76 isCustomDomain : function() 77 77 { 78 return this.ie && document.domain != window.location.hostname; 78 var domain = document.domain, 79 hostname = window.location.hostname; 80 81 return this.ie && 82 domain != hostname && 83 domain != ( '[' + hostname + ']' ); // IPv6 IP support (#5434) 79 84 } 80 85 }; 81 86