display warning if not remix.ethereum.org and not local viewing

pull/1/head
yann300 7 years ago
parent 333af53783
commit fb199be428
  1. 9
      src/app.js

@ -195,9 +195,14 @@ module.exports = App
function run () { function run () {
var self = this var self = this
modalDialogCustom.alert(`The Remix IDE has moved to https://remix.ethereum.org/.\n if (window.location.protocol.indexOf('http') === 0 &&
window.location.hostname !== 'remix.ethereum.org' &&
window.location.hostname !== 'localhost' &&
window.location.hostname !== '127.0.0.1') {
modalDialogCustom.alert(`The Remix IDE has moved to http://remix.ethereum.org.\n
This instance of Remix you are visiting WILL NOT BE UPDATED.\n This instance of Remix you are visiting WILL NOT BE UPDATED.\n
Please make a backup of your contracts and start using https://remix.ethereum.org/`) Please make a backup of your contracts and start using http://remix.ethereum.org`)
}
// ----------------- Compiler ----------------- // ----------------- Compiler -----------------
var compiler = new Compiler((url, cb) => { var compiler = new Compiler((url, cb) => {

Loading…
Cancel
Save