From 38061680383dff3e53a6670b1dff40148c3587f1 Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Sat, 18 May 2013 16:59:24 +0100 Subject: [PATCH] Fixed problem with non-shadow style tiddlers not being recognised --- core/modules/utils/dom/styles.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/utils/dom/styles.js b/core/modules/utils/dom/styles.js index 99f28726d..8ad2bfdea 100644 --- a/core/modules/utils/dom/styles.js +++ b/core/modules/utils/dom/styles.js @@ -20,7 +20,7 @@ function StylesheetManager(wiki) { this.stylesheets = {}; // Hashmap of currently rendered stylesheets // Apply initial stylesheets var self = this, - stylesheetTiddlers = this.wiki.filterTiddlers("[is[shadow]!has[draft.of]tag[" + STYLESHEET_TAG + "]]"); + stylesheetTiddlers = this.wiki.filterTiddlers("[!has[draft.of]tag[" + STYLESHEET_TAG + "]]"); $tw.utils.each(stylesheetTiddlers,function(title,index) { self.addStylesheet(title); });