Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    isc.warn multiple lines

    Is there any way to get isc.warn message to respect line breaks? Something like
    isc.warn("test \n test"); I want to have shown as

    test
    test

    instead of test test

    #2
    Standard HTML: <br>

    Comment


      #3
      isc.warn("<br>test test</br>");? It doesn't work - still on the same line

      Comment


        #4
        Try
        Code:
        isc.warn("test<br>test");

        Comment

        Working...
        X