We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb463db commit e3368a5Copy full SHA for e3368a5
spec/fixed-footnotes-spec.js
@@ -131,8 +131,10 @@ describe("fixed-footnotes.refresh", function() {
131
true, false); // reference visible, note invisible
132
var ffn = footnotes({}, w);
133
expect(w.$(".fixed-footnotes-note").length).toBe(0);
134
+ expect(w.$(".fixed-footnotes-container").hasClass("empty")).toBe(true);
135
ffn.refresh();
136
expect(w.$(".fixed-footnotes-note").length).toBe(1);
137
+ expect(w.$(".fixed-footnotes-container").hasClass("empty")).toBe(false);
138
done();
139
});
140
0 commit comments