~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/filesystem/browser/media/editor.js

  • Committer: David Coles
  • Date: 2010-06-02 14:11:09 UTC
  • mfrom: (1791.1.4 iefixes)
  • Revision ID: coles.david@gmail.com-20100602141109-a08a31ldeumqmlyg
Fixes to improve compatibility with IE8.

- Console overlay no longer crashes due to use of reserved 'class' variable 
  name
- Fixed missing subject heading due to unclosed <h3> tag
- Normalize newlines to single LF (fixes syntax errors in exercises)
- Fix checkboxes in File Browser

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
    else
23
23
        data = document.getElementById("editbox").value;
24
24
 
 
25
    /* Convert newlines to a single LF (mainly for IE's CRLFs) */
 
26
    data = data.replace(/\r\n/g, '\n').replace(/\r/g, '\n');
 
27
 
25
28
    /* Do NOT refresh the page contents (causes problems for editarea and is
26
29
     * unnecessary). */
27
30
    if (current_file.svnstatus != "revision" ||