Where is the value of "${body}" defined? When I build a javascript app, the
following code is inserted there:-

   <script>
          new MyApp().start();
   </script>

I want to be able to insert additional code there like:-

<script type="text/javascript">
   royaleCompatibility = new RoyaleCompatibility();
   if (royaleCompatibility.isCompatible) {
       new MyApp().start();
   } else {
       royaleCompatibility.displayIncompatibilityText();
   }
</script>


How do I do that?

Reply via email to