From 89e2c5e884deae4f6d59c4e301e223b577303861 Mon Sep 17 00:00:00 2001 From: reger Date: Sat, 17 May 2014 22:56:15 +0200 Subject: [PATCH] fix: allow enable of CrawlStartExpert.html #file --- htroot/CrawlStartExpert.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htroot/CrawlStartExpert.html b/htroot/CrawlStartExpert.html index ec4a692a0..d44bffe1a 100644 --- a/htroot/CrawlStartExpert.html +++ b/htroot/CrawlStartExpert.html @@ -133,9 +133,9 @@ }); }; - /** Check DOM & properties if element is checkeds. */ + /** Check DOM & properties if element is checked. */ $.fn.isChecked = function() { - return $(this).attr("checked") || $(this).prop("checked"); + return $(this).prop("checked"); }; /** Set checked state for checkoxes/radio buttons. */