Skip to content

Commit

Permalink
Fixed a rare script execution comparator edge-case for false negatives.
Browse files Browse the repository at this point in the history
  • Loading branch information
PokkeFe committed Jun 29, 2021
1 parent 09ad127 commit c017c8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion text_extensions_for_pandas/resources/span_array.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Increment the version to invalidate the cached script
const VERSION = 0.75

if(!window.SpanArray || window.SpanArray.VERSION < VERSION) {
if(window.SpanArray == undefined || window.SpanArray.VERSION == undefined || window.SpanArray.VERSION < VERSION) {

// Replace global SpanArray CSS with latest copy
const global_stylesheet = document.head.querySelector("style.span-array-css")
Expand Down

0 comments on commit c017c8b

Please sign in to comment.