Version Notes
IE bug resolved.
Download this release
Release Info
Developer | Magento Core Team |
Extension | FancyFeedback |
Version | 1.0.0.9 |
Comparing to | |
See all releases |
Code changes from version 1.0.0.8 to 1.0.0.9
app/design/frontend/default/default/template/catalog/navigation/top.phtml
CHANGED
@@ -169,10 +169,32 @@ text-align:center;
|
|
169 |
|
170 |
|
171 |
|
|
|
172 |
<script type="text/javascript">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
var fbh = document.getElementById('feedback_holder');
|
174 |
var fbsl = document.getElementById('feedback-side-logo');
|
175 |
var fd = document.getElementById('formdiv');
|
|
|
176 |
if(navigator.appName == "Microsoft Internet Explorer")
|
177 |
{
|
178 |
fbh.style.position = 'absolute';
|
@@ -185,6 +207,13 @@ if(navigator.appName == "Microsoft Internet Explorer")
|
|
185 |
|
186 |
fd.style.position = 'absolute';
|
187 |
fd.style.top = '300px';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
188 |
}
|
189 |
fbh.style.display = 'block';
|
190 |
fbh.onclick = showForm;
|
@@ -196,6 +225,11 @@ function showForm(e)
|
|
196 |
if (!e) var e = window.event;
|
197 |
fbh.style.display = 'none';
|
198 |
fd.style.display = 'block';
|
|
|
|
|
|
|
|
|
|
|
199 |
}
|
200 |
|
201 |
function hideForm(e)
|
169 |
|
170 |
|
171 |
|
172 |
+
|
173 |
<script type="text/javascript">
|
174 |
+
function getIEVersion()
|
175 |
+
{
|
176 |
+
var ver='';
|
177 |
+
if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){ //test for MSIE x.x;
|
178 |
+
var ieversion=new Number(RegExp.$1) // capture x.x portion and store as a number
|
179 |
+
if (ieversion>=8)
|
180 |
+
ver=8;
|
181 |
+
else if (ieversion>=7)
|
182 |
+
ver=7;
|
183 |
+
else if (ieversion>=6)
|
184 |
+
ver=6;
|
185 |
+
else if (ieversion>=5)
|
186 |
+
ver=5;
|
187 |
+
}
|
188 |
+
else
|
189 |
+
ver=0;
|
190 |
+
|
191 |
+
return ver;
|
192 |
+
}
|
193 |
+
|
194 |
var fbh = document.getElementById('feedback_holder');
|
195 |
var fbsl = document.getElementById('feedback-side-logo');
|
196 |
var fd = document.getElementById('formdiv');
|
197 |
+
|
198 |
if(navigator.appName == "Microsoft Internet Explorer")
|
199 |
{
|
200 |
fbh.style.position = 'absolute';
|
207 |
|
208 |
fd.style.position = 'absolute';
|
209 |
fd.style.top = '300px';
|
210 |
+
|
211 |
+
if(getIEVersion() > 6 && getIEVersion()!=0 && getIEVersion()!='')
|
212 |
+
{
|
213 |
+
fbh.style.height = '100px';
|
214 |
+
fbsl.style.height = '100px';
|
215 |
+
fbsl.style.right = '305px';
|
216 |
+
}
|
217 |
}
|
218 |
fbh.style.display = 'block';
|
219 |
fbh.onclick = showForm;
|
225 |
if (!e) var e = window.event;
|
226 |
fbh.style.display = 'none';
|
227 |
fd.style.display = 'block';
|
228 |
+
document.getElementById('name').value = '';
|
229 |
+
document.getElementById('email').value = '';
|
230 |
+
document.getElementById('msg').value = '';
|
231 |
+
document.getElementById('submit_btn').removeAttribute('disabled');
|
232 |
+
document.getElementById('error').innerHTML = '';
|
233 |
}
|
234 |
|
235 |
function hideForm(e)
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>FancyFeedback</name>
|
4 |
-
<version>1.0.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>FancyFeedback allows the visitors on your site to leave you their precious feedbacks in a stylish way.</summary>
|
10 |
<description>FancyFeedback allows the visitors on your site to leave you their precious feedbacks in a stylish way.</description>
|
11 |
-
<notes>
|
12 |
<authors><author><name>Arvind Bhardwaj</name><user>auto-converted</user><email>bhardwajsonheight@gmail.com</email></author></authors>
|
13 |
-
<date>2011-02-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="fancyfeedback.xml" hash="0c5dae129ffeb852b128d234ffa1a2d1"/></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="fancyfeedback.xml" hash="17c534bde84cb48501e06bc64eb73a92"/></dir><dir name="template"><dir name="catalog"><dir name="navigation"><file name="top.phtml" hash="
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>FancyFeedback</name>
|
4 |
+
<version>1.0.0.9</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>FancyFeedback allows the visitors on your site to leave you their precious feedbacks in a stylish way.</summary>
|
10 |
<description>FancyFeedback allows the visitors on your site to leave you their precious feedbacks in a stylish way.</description>
|
11 |
+
<notes>IE bug resolved.</notes>
|
12 |
<authors><author><name>Arvind Bhardwaj</name><user>auto-converted</user><email>bhardwajsonheight@gmail.com</email></author></authors>
|
13 |
+
<date>2011-02-14</date>
|
14 |
+
<time>07:27:37</time>
|
15 |
+
<contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="fancyfeedback.xml" hash="0c5dae129ffeb852b128d234ffa1a2d1"/></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="fancyfeedback.xml" hash="17c534bde84cb48501e06bc64eb73a92"/></dir><dir name="template"><dir name="catalog"><dir name="navigation"><file name="top.phtml" hash="b08065cee9d2a78cb8595994390d1559"/></dir></dir></dir></dir></dir></dir><dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="template"><dir name="fancyfeedback"><file name="fancyfeedback.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="WebspeaksFeedback_Fancyfeedback.xml" hash="257bf9c32ee26ef94a05e856846e998d"/></dir></target><target name="magelocal"><dir name="WebspeaksFeedback"><dir name="Fancyfeedback"><dir name="Block"><file name="Fancyfeedback.php" hash="d02b3f93ba6ee94bc74b54ef25046fd9"/><file name="Fancyfeedbacksettings.php" hash="f04fc609ce337105787dcbb256c636eb"/><dir name="Adminhtml"><file name="Fancyfeedback.php" hash="cf620a2b1f3113946638c20fb6ad3e41"/><file name="Fancyfeedbacksettings.php" hash="52706a0cb59be12f73cc5e8d8792543a"/><dir name="Fancyfeedback"><file name="Edit.php" hash="9f86528100061fd986763966d3bc0e75"/><file name="Grid.php" hash="c5bce27e2cee5d1ca0ead9f4cdef94d7"/><dir name="Edit"><file name="Form.php" hash="4b428d7015b1b30797cb238a48635e96"/><file name="Tabs.php" hash="343574517ed6498b3fd774e37856b4f7"/><dir name="Tab"><file name="Form.php" hash="339e16730e24adbe7c507a532a76e973"/></dir></dir></dir><dir name="Fancyfeedbacksettings"><file name="Edit.php" hash="2da6ba8586c5ae7b16d823551f581786"/><file name="Grid.php" hash="ae6d02768f3914c6a19d1397effe8077"/><dir name="Edit"><file name="Form.php" hash="dd2cbef4a22f03a1678d9e0eb7406cd3"/><file name="Tabs.php" hash="d7b8374aa1a7bee3ece8f1e70d2521a6"/><dir name="Tab"><file name="Form.php" hash="1a3fae0d48a7d911b704f88e5b66eede"/></dir></dir></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="883b771fad3617d81126076f602f9b16"/><dir name="Adminhtml"><file name="FancyfeedbackController.php" hash="e642bdf0842e42461e61659946f3ab92"/><file name="FancyfeedbacksettingsController.php" hash="2d5ce7b4d6a5a96fa6b847ee78e1643b"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="f474b64ecee5a0c40deb8fae6a65b90e"/><file name="config.xml" hash="bd6629862ea5ecc50c1a76d55279abaf"/><file name="system.xml" hash="60190e2b1846d3ebbc58dbd2ed36690a"/></dir><dir name="Helper"><file name="Data.php" hash="b740042b28249ba9ad094aec306a595e"/></dir><dir name="Model"><file name="Fancyfeedback.php" hash="5b7c332074e592ed84f4d1ecd43495e9"/><file name="Fancyfeedbacksettings.php" hash="0b7f8532742919d1f058d7bc7ba9f7b5"/><file name="Status.php" hash="2abfc9c042beba1ca72f700731f97097"/><dir name="Mysql4"><file name="Fancyfeedback.php" hash="d941d2fa2dfcfc130ab198057ad2ed9d"/><file name="Fancyfeedbacksettings.php" hash="2345af5cd69086b36e727b5404b47a22"/><dir name="Fancyfeedback"><file name="Collection.php" hash="c50573841e863124f474e492225cb11c"/></dir><dir name="Fancyfeedbacksettings"><file name="Collection.php" hash="e2becf3a961c00f105a28bba24ef708a"/></dir></dir></dir><dir name="sql"><dir name="fancyfeedbacksettings_setup"><file name="mysql4-install-0.1.0.php" hash="bf4179597e398cb8609e68760e2f3991"/></dir><dir name="fancyfeedback_setup"><file name="mysql4-install-0.1.0.php" hash="26912548fc55ec16d36db173e62d7435"/></dir></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|