| Index: chrome/content/ui/firstRun.js |
| =================================================================== |
| --- a/chrome/content/ui/firstRun.js |
| +++ b/chrome/content/ui/firstRun.js |
| @@ -53,6 +53,11 @@ |
| setLinks("dataCorruptionWarning", Utils.getDocLink("knownIssuesChrome_filterstorage")); |
| } |
| + // Show warning if Safari < 6 |
| + var info = require('info'); |
| + if (info.platform == "safari" && info.platformVersion.split(".") < [6]) |
| + E("legacySafariWarning").removeAttribute("hidden"); |
| + |
| // Set up URL |
| setLinks("acceptableAdsExplanation", Utils.getDocLink("acceptable_ads_criteria"), openFilters); |