Skip to content

Commit 27a36c1

Browse files
committed
Fixed #116: Postbox is broken
1 parent 21a2231 commit 27a36c1

File tree

4 files changed

+36
-17
lines changed

4 files changed

+36
-17
lines changed

src/common/common-logic.js

+10-8
Original file line numberDiff line numberDiff line change
@@ -185,14 +185,16 @@ function findClosestSendButton(elem) {
185185
// boundaries and sometimes we won't.
186186

187187
var sendButton = null;
188-
while (elem.parentElement) {
189-
sendButton = elem.parentElement.querySelector('[role="button"][tabindex="1"]');
188+
// The `elem.parentNode.querySelector` check is to make sure we stop if we
189+
// hit a parent node type that can't query.
190+
while (elem.parentNode && elem.parentNode.querySelector) {
191+
sendButton = elem.parentNode.querySelector('[role="button"][tabindex="1"]');
190192
if (sendButton) {
191193
debugLog('findClosestSendButton', 'found');
192194
return sendButton;
193195
}
194196

195-
elem = elem.parentElement;
197+
elem = elem.parentNode;
196198
}
197199

198200
// If this appears to be in an iframe, make a recursive call.
@@ -278,7 +280,7 @@ function setupForgotToRenderInterceptors(composeElem, MdhHtmlToText, marked, pre
278280
var ourTarget =
279281
(event.target === composeElem) ||
280282
(event.target instanceof composeElem.ownerDocument.defaultView.HTMLHtmlElement &&
281-
event.target === composeElem.parentElement);
283+
event.target === composeElem.parentNode);
282284

283285
if (ourTarget &&
284286
(event.metaKey || event.ctrlKey) && event.keyCode === ENTER_KEYCODE &&
@@ -290,10 +292,10 @@ function setupForgotToRenderInterceptors(composeElem, MdhHtmlToText, marked, pre
290292
debugLog('setupForgotToRenderInterceptors', 'sendHotkeyKeydownListener', 'skipping undesired event', event.target);
291293
};
292294

293-
composeSendButton.parentElement.addEventListener('keydown', composeSendButtonKeyListener, true);
294-
composeSendButton.parentElement.addEventListener('keyup', composeSendButtonKeyListener, true);
295-
composeSendButton.parentElement.addEventListener('click', composeSendButtonClickListener, true);
296-
composeElem.parentElement.addEventListener('keydown', sendHotkeyKeydownListener, true);
295+
composeSendButton.parentNode.addEventListener('keydown', composeSendButtonKeyListener, true);
296+
composeSendButton.parentNode.addEventListener('keyup', composeSendButtonKeyListener, true);
297+
composeSendButton.parentNode.addEventListener('click', composeSendButtonClickListener, true);
298+
composeElem.parentNode.addEventListener('keydown', sendHotkeyKeydownListener, true);
297299
}
298300

299301
// Returns true if `text` looks like raw Markdown, false otherwise.

src/common/markdown-here.js

+8-6
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ function makeStylesExplicit(wrapperElem, css) {
224224

225225
// We're starting our search one level above the wrapper, which means we
226226
// might match stuff outside of our wrapper. We'll have to double-check below.
227-
selectorMatches = wrapperElem.parentElement.querySelectorAll(rule.selectorText);
227+
selectorMatches = wrapperElem.parentNode.querySelectorAll(rule.selectorText);
228228

229229
for (j = 0; j < selectorMatches.length; j++) {
230230
elem = selectorMatches[j];
@@ -236,12 +236,14 @@ function makeStylesExplicit(wrapperElem, css) {
236236
}
237237

238238
// Make sure the selector match isn't inside an exclusion block.
239-
while (elem) {
239+
// The check for `elem.classList` stop us if we hit a non-element node
240+
// while going up through the parents.
241+
while (elem && (typeof(elem.classList) !== 'undefined')) {
240242
if (elem.classList.contains('markdown-here-exclude')) {
241243
elem = 'excluded';
242244
break;
243245
}
244-
elem = elem.parentElement;
246+
elem = elem.parentNode;
245247
}
246248
if (elem === 'excluded') {
247249
// Don't style this element.
@@ -272,13 +274,13 @@ function hasParentElementOfTagName(element, tagName) {
272274

273275
tagName = tagName.toUpperCase();
274276

275-
parent = element.parentElement;
277+
parent = element.parentNode;
276278
while (parent) {
277279
if (parent.nodeName === tagName) {
278280
return true;
279281
}
280282

281-
parent = parent.parentElement;
283+
parent = parent.parentNode;
282284
}
283285

284286
return false;
@@ -314,7 +316,7 @@ function findMarkdownHereWrapper(focusedElem) {
314316
break;
315317
}
316318

317-
wrapper = wrapper.parentElement;
319+
wrapper = wrapper.parentNode;
318320
}
319321

320322
return wrapper;

src/common/options-store.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ this.OptionsStore._fillDefaults = function(prefsObj, callback) {
479479
// Only take action if the key doesn't already have a value set.
480480
if (typeof(prefsObj[key]) === 'undefined') {
481481
if (that.defaults[key].hasOwnProperty('__defaultFromFile__')) {
482-
var xhr = new XMLHttpRequest();
482+
var xhr = new Utils.global.XMLHttpRequest();
483483

484484
if (that.defaults[key]['__mimeType__']) {
485485
xhr.overrideMimeType(that.defaults[key]['__mimeType__']);

src/common/utils.js

+17-2
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,21 @@ function isElementinDocument(element) {
131131
}
132132

133133

134+
// From: http://stackoverflow.com/a/3819589/729729
135+
// Postbox doesn't support `node.outerHTML`.
136+
function outerHTML(node, doc) {
137+
// if IE, Chrome take the internal method otherwise build one
138+
return node.outerHTML || (
139+
function(n){
140+
var div = doc.createElement('div'), h;
141+
div.appendChild(n.cloneNode(true));
142+
h = div.innerHTML;
143+
div = null;
144+
return h;
145+
})(node);
146+
}
147+
148+
134149
// An approximate equivalent to outerHTML for document fragments.
135150
function getDocumentFragmentHTML(docFrag) {
136151
var html = '', i;
@@ -140,7 +155,7 @@ function getDocumentFragmentHTML(docFrag) {
140155
html += node.nodeValue;
141156
}
142157
else { // going to assume ELEMENT_NODE
143-
html += node.outerHTML;
158+
html += outerHTML(node, docFrag.ownerDocument);
144159
}
145160
}
146161

@@ -150,7 +165,7 @@ function getDocumentFragmentHTML(docFrag) {
150165

151166
function isElementDescendant(parent, descendant) {
152167
var ancestor = descendant;
153-
while (!!(ancestor = ancestor.parentElement)) {
168+
while (!!(ancestor = ancestor.parentNode)) {
154169
if (ancestor === parent) {
155170
return true;
156171
}

0 commit comments

Comments
 (0)