Show More
@@ -96,6 +96,9 b' function selectFileChoice() {' | |||
|
96 | 96 | form.submit(); |
|
97 | 97 | $('.post-form-w').unblock(); |
|
98 | 98 | }; |
|
99 | worker.port.onerror = function(event){ | |
|
100 | throw new Error(event.message + " (" + event.filename + ":" + event.lineno + ")"); | |
|
101 | }; | |
|
99 | 102 | worker.port.start(); |
|
100 | 103 | |
|
101 | 104 | var form = $('#form'); |
@@ -88,6 +88,9 b' function initFavPanel() {' | |||
|
88 | 88 | worker.port.onmessage = function(e) { |
|
89 | 89 | updateFavPosts(e.data); |
|
90 | 90 | }; |
|
91 | worker.port.onerror = function(event){ | |
|
92 | throw new Error(event.message + " (" + event.filename + ":" + event.lineno + ")"); | |
|
93 | }; | |
|
91 | 94 | worker.port.start(); |
|
92 | 95 | |
|
93 | 96 | $(favPanelButton).click(function() { |
General Comments 0
You need to be logged in to leave comments.
Login now