| | 121 | |
|---|
| | 122 | //offer google chrome frame for the richest experience |
|---|
| | 123 | if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false) { |
|---|
| | 124 | $html .= <<<END |
|---|
| | 125 | <!--[if IE]> |
|---|
| | 126 | <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script> |
|---|
| | 127 | <script> |
|---|
| | 128 | !$.cookie('skip_cf_check') //skip check if skip_cf_check cookie is active |
|---|
| | 129 | && CFInstall //make sure CFInstall is loaded |
|---|
| | 130 | && !!window.attachEvent //attachEvent is ie only, should never fire in other browsers |
|---|
| | 131 | && window.attachEvent("onload", function() { |
|---|
| | 132 | CFInstall.check({ |
|---|
| | 133 | preventPrompt: true, |
|---|
| | 134 | onmissing: function() { |
|---|
| | 135 | $('<div></div>') |
|---|
| | 136 | .html('Unfortunately, some features may not work correctly in your ' |
|---|
| | 137 | + 'current browser. We suggest that you activate Chrome Frame, ' |
|---|
| | 138 | + 'which will offer you the richest posible experience. ') |
|---|
| | 139 | .dialog({ |
|---|
| | 140 | title: 'Activate Chrome Frame', |
|---|
| | 141 | resizable: false, |
|---|
| | 142 | modal: true, |
|---|
| | 143 | position: ['center', 'center'], |
|---|
| | 144 | close: function (e) { |
|---|
| | 145 | $.cookie('skip_cf_check', 'true'); |
|---|
| | 146 | $(e.target).dialog("destroy").remove(); |
|---|
| | 147 | }, |
|---|
| | 148 | buttons: [ |
|---|
| | 149 | { |
|---|
| | 150 | text: 'Activate', |
|---|
| | 151 | click: function() { |
|---|
| | 152 | window.location = 'http://www.google.com/chromeframe/?redirect=true'; |
|---|
| | 153 | } |
|---|
| | 154 | |
|---|
| | 155 | }, |
|---|
| | 156 | { |
|---|
| | 157 | text: fpbx.msg.framework.cancel, |
|---|
| | 158 | click: function() { |
|---|
| | 159 | //set cookie to prevent prompting again in this session |
|---|
| | 160 | $.cookie('skip_cf_check', 'true'); |
|---|
| | 161 | $(this).dialog("destroy").remove(); |
|---|
| | 162 | } |
|---|
| | 163 | } |
|---|
| | 164 | ] |
|---|
| | 165 | }); |
|---|
| | 166 | } |
|---|
| | 167 | }); |
|---|
| | 168 | |
|---|
| | 169 | }); |
|---|
| | 170 | </script> |
|---|
| | 171 | <![endif]--> |
|---|
| | 172 | END; |
|---|
| | 173 | } |
|---|
| | 174 | |
|---|