This redefinition is not needed and also used Mozilla specific API to
access the data thus breaking the date filter in all other browsers.

Signed-off-by: Michael Wood <[email protected]>
---
 bitbake/lib/toaster/toastergui/static/js/filtersnippet.js | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/bitbake/lib/toaster/toastergui/static/js/filtersnippet.js 
b/bitbake/lib/toaster/toastergui/static/js/filtersnippet.js
index 27b057e..6527d61 100755
--- a/bitbake/lib/toaster/toastergui/static/js/filtersnippet.js
+++ b/bitbake/lib/toaster/toastergui/static/js/filtersnippet.js
@@ -79,9 +79,7 @@ function date_init (key, from_date, to_date, min_date, 
max_date, initial_enable)
     // catch the submit (just once)
     $("form").unbind('submit');
     $("form").submit(function(e) {
-        // format a composite daterange filter value so that it can be parsed 
and post-processed in the view
-        var key=e.originalEvent.explicitOriginalTarget.getAttribute("data-key")
-        if (typeof key != "undefined") {
+        if (key !== undefined) {
             if ($("#date_from_"+key).length) {
                 var 
filter=key+"__gte!"+key+"__lt:"+$("#date_from_"+key).val()+"!"+$("#date_to_"+key).val()+"_daterange";
                 $("#last_date_from_"+key).val($("#date_from_"+key).val());
-- 
2.1.0

-- 
_______________________________________________
toaster mailing list
[email protected]
https://lists.yoctoproject.org/listinfo/toaster

Reply via email to