From 49db08cbf038699407a9debf6da1f527c4d0758a Mon Sep 17 00:00:00 2001 From: opi Date: Sun, 6 Apr 2014 10:32:01 +0200 Subject: [PATCH] Variable type "Undefined" is a string. --- apps_fr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps_fr.md b/apps_fr.md index f14c6ee6..9d9d635c 100644 --- a/apps_fr.md +++ b/apps_fr.md @@ -39,7 +39,7 @@ $(document).ready(function () { $.getJSON('/list.json', function(app_list) { console.log(app_list); $.each(app_list, function(app_id, infos) { - if (typeof infos.manifest.description.fr === undefined) { + if (typeof infos.manifest.description.fr === 'undefined') { infos.manifest.description.fr = infos.manifest.description.en; } html = $('#app-template').html()