rename global

Summary:
global variable was renamed from `Sonar` to `Flipper`.

Fixes #267.

Reviewed By: passy

Differential Revision: D9934362

fbshipit-source-id: 0c03f3e12d9db26c5c7e9430fc98ba7fffd0bf54
This commit is contained in:
Daniel Büchele
2018-09-19 03:44:54 -07:00
committed by Facebook Github Bot
parent 0d33f7afd6
commit bc4e6705b7
2 changed files with 2 additions and 2 deletions

View File

@@ -86,7 +86,7 @@
}; };
script.onload = () => { script.onload = () => {
global.Sonar.init(); global.Flipper.init();
}; };
document.body.appendChild(script); document.body.appendChild(script);

View File

@@ -15,7 +15,7 @@
</script> </script>
<script src="bundle.js"></script> <script src="bundle.js"></script>
<script> <script>
global.Sonar.init(); global.Flipper.init();
</script> </script>
</body> </body>
</html> </html>