diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-03-06 12:50:43 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-03-06 12:50:43 -0800 |
commit | 76ffb6f4a67562db321ead1eb25b849fc6fe60d9 (patch) | |
tree | 09cd21e8d51df316775aee4c6ec0082324b3b039 /src/library_browser.js | |
parent | 756ab650e0548fd4d37637560f8ed76703723671 (diff) |
fix IE comma issue
Diffstat (limited to 'src/library_browser.js')
-rw-r--r-- | src/library_browser.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library_browser.js b/src/library_browser.js index 4ed3008b..bdd94bac 100644 --- a/src/library_browser.js +++ b/src/library_browser.js @@ -206,10 +206,10 @@ mergeInto(LibraryManager.library, { try { if (useWebGL) { ctx = canvas.getContext('experimental-webgl', { - alpha: false, #if GL_TESTING - preserveDrawingBuffer: true + preserveDrawingBuffer: true, #endif + alpha: false }); } else { ctx = canvas.getContext('2d'); |