From 3d392be60b24250cf8685d891442ec617db8abf8 Mon Sep 17 00:00:00 2001 From: Darren Waddell Date: Thu, 14 Jan 2010 21:02:04 +0000 Subject: [PATCH] Fix for #231 --- Source/Interface/Mask.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Interface/Mask.js b/Source/Interface/Mask.js index b301bb1a..86171ffc 100644 --- a/Source/Interface/Mask.js +++ b/Source/Interface/Mask.js @@ -49,7 +49,7 @@ var Mask = new Class({ }, initialize: function(target, options){ - this.target = document.id(target) || document.body; + this.target = document.id(target) || document.id(document.body); this.target.store('mask', this); this.setOptions(options); this.render();