Skip to content

Commit

Permalink
Nuttin’
Browse files Browse the repository at this point in the history
  • Loading branch information
stephband committed Oct 30, 2023
1 parent 6794ff8 commit 7de408d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion literal-element/modules/properties.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ export default {
src: {
attribute: function(value) {
const internal = getInternals(this);

internal.src = import(rewriteURL(value)).catch((e) => {
throw new Error('<' + internal.tag + '> not defined, failed to fetch src "' + value + '" ' + e.message);
});
Expand Down
1 change: 0 additions & 1 deletion modules/renderer-dom.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ function updateDOM(first, last, contents) {

while (++c < contents.length - 1) {
object = contents[c];

if (typeof object === 'string') {
// If there's a text node (but not last) lined up, populate it
if (isTextNode(node) && node !== last) {
Expand Down

0 comments on commit 7de408d

Please sign in to comment.