Rémi Gaillard
51c6e2384f
[-] FO: Fix display specific prices for combinations in product page #PSCFV-7807
2013-02-18 20:30:53 +01:00
gRoussac
3e9d0dda55
[-] FO : Fix Bug #PSCFV-7339 available date on product page
2013-02-12 16:40:26 +01:00
gRoussac
c0a62be1c5
[-] FO : Fix bug #PSCFI-6864 #PSCFV-6516 Issue with deleted address blocking order process
2013-01-31 19:06:19 +01:00
Gregory Roussac
5832c576a0
[-] FO : 'undefined' is undefined =)
2013-01-29 10:56:28 +01:00
vAugagneur
fb2ec6349a
[-] FO : fixed bug #PSCFV-7381 - free shipping when no carrier available
2013-01-25 09:54:08 +01:00
gRoussac
33f27c2c0b
[-] FO : No error on first consultation of shopping cart with minimum purchase
2013-01-24 10:22:29 +01:00
gRoussac
300259661a
[-] FO : adding values to empty parameters in ajax of cart-summary.js
2013-01-23 18:36:20 +01:00
gRoussac
72c76e3b59
[-] FO : Apply changes from commit 1.4.X 1d0d59845b5f9cb9333a89e60523ab41df076d89 no cache for POST queries
2013-01-23 15:48:15 +01:00
gRoussac
c0e7444889
[-] FO : Fix bug #PSCFI-6751 for 1.5.X carriers and payments update in OPC
2013-01-22 16:32:55 +01:00
gRoussac
609abe4656
[-] FO : Bad checkbox behavior in FF in OPC
2013-01-08 10:04:30 +01:00
gRoussac
e6d23f175c
[-] FO : Fix #PSCFV-5544 same alias is no more rejected in OPC
2013-01-07 16:54:42 +01:00
Gregory Roussac
adb95f7693
Merge branch 'development' of https://github.com/PrestaShop/PrestaShop into development
2013-01-04 16:32:45 +01:00
gRoussac
34f98b0987
[-] FO : Fix #PSCFV-4885 for DNI field, states and postcode display
2013-01-04 16:31:05 +01:00
Francois Gaillard
8baf87eef5
// Welcome 2013
2013-01-04 11:19:03 +01:00
vAugagneur
a4eb2cc7a9
//Merge branch release
2013-01-02 09:56:20 +01:00
Gregory Roussac
dbb8a9f2e0
[-] FO : Fix html entities in order messages and threads
2012-12-27 12:23:10 +01:00
Gregory Roussac
021e0d8f98
[-] FO : Fixed message & entity
2012-12-26 18:58:17 +01:00
Damien Metzger
c9a29f8b2a
[-] FO : fixed usage of "&" in the order messages added by the customers
2012-12-26 12:50:34 +01:00
vAugagneur
fde175ac4f
revert modif on product.js
2012-12-17 18:05:22 +01:00
vAugagneur
1c27ae15f9
//order opc js fix
2012-12-13 14:55:26 +01:00
Vincent Augagneur
e060a32e60
Merge pull request #79 from PrestaEdit/PSCFV-3877
...
[-] FO : mobile template - states management
2012-12-12 03:34:09 -08:00
Jonathan Danse
1780a5ea7b
[*] FO : mobile template - states management
...
Put "p" and "div" in the same selector
2012-12-12 12:30:10 +01:00
PrestaEdit
7a91409023
[-] FO : mobile template - states management
2012-12-08 23:46:14 +01:00
Rémi Gaillard
b474ca3d85
[-] FO: Fix cart summary ajax refreshment
2012-12-06 11:58:29 +01:00
vAugagneur
6a4100687f
//small fix with js on product page
2012-12-03 14:47:38 +01:00
Milow
9c5984178f
Fixup js/tools/statesManagement.js
...
Replace == with === and != with !==
2012-11-23 23:02:28 -06:00
Milow
3f01a6f587
Fixup js/tools.js
...
1. Replace == with === and != with !==
2. Add missing semicolons to lines 238 and 241
2012-11-23 22:58:54 -06:00
Milow
b9a79e196d
Fixup js/stores.js
...
1. Replace == with === and != with !==
2. Fixed variable scrope issue
3. Added missing () to constructors on lines 165 and 186
2012-11-23 22:53:44 -06:00
Milow
5c2f6e5817
Fixup js/scenes.js
...
Replace == with ===
2012-11-23 22:49:34 -06:00
Milow
773977c113
Fix up js/products-comparison.js
...
Replace == with ===
2012-11-23 22:48:16 -06:00
Milow
76819eff1c
Fixup js/product.js
...
Error fixes:
1. Added missing semicolons to lines 94, 103, and 680
General fixes:
1. Replace new Array() with []
2. Replace new Number with simply 0. If not, === checks will be broken
3. Replace == with === and != with !==
4. Fixed a couple variable scopes
5. Removed var from line 423 that was not needed because it was already
defined
6. Added vars to for loops
2012-11-23 22:45:47 -06:00
Milow
c57c53711a
Fixup js/order-opc.js
...
Error fixes:
1. Added missing var on line 89
2. Added missing semicolons on lines 98, 104, 110, 181, 766, 781
General fixes:
1. Replace == with === and != with !==
2. Added missing var to for loops
3. Moved a few var scopes to the correct location
2012-11-23 22:23:28 -06:00
Milow
41371b1938
Fixup js/order-address.js
...
Replace == with === and != with !==
Added var to for loop
2012-11-23 22:09:15 -06:00
Milow
89d03a6aa6
Fixup js/history.js
...
Change == to === and != to !==
2012-11-23 22:06:11 -06:00
Milow
8e01829bf0
Fixup js/cart-summary.js
...
Cleanup of cart-summary.js
Error fixes:
1. Added two missing semicolons on line 34 and line 622
2. Fix var scrope around lines 229 and 805
General fixes:
1. Changed all == to === and != to !==
2. Added missing var to undefined variables in for loops
2012-11-23 22:02:11 -06:00
Francois Gaillard
78dc62a010
Merge pull request #26 from prestarocket/history.js
...
[*] FO : Clean history.js
2012-11-23 10:13:57 -08:00
Francois Gaillard
d6bebf2864
Merge pull request #27 from prestarocket/product.js
...
[*] FO : Clean product.js
2012-11-23 10:12:41 -08:00
Francois Gaillard
4b3ea69526
Merge pull request #28 from prestarocket/order-opc
...
[*] FO : Clean order-opc.js
2012-11-23 10:08:32 -08:00
adonis karavokyros
d97f803f30
Clean order-opc.js
...
Jquery Selectors : keep it simple
2012-11-22 21:46:03 +01:00
adonis karavokyros
2818d46568
Clean product.js
...
Jquery Selector : keep it simple
2012-11-22 21:37:44 +01:00
adonis karavokyros
c962db9170
Clean history.js
...
js selectors should be more simple in order to be more flexible in
theme development
2012-11-22 21:19:12 +01:00
DamienMetzger
e22d3fd905
[-] FO : store locator working hours fixed #PSCFV-5709
2012-11-22 18:13:53 +01:00
vAugagneur
be946319be
//remove svn keyword @version Release: $
2012-11-22 11:57:40 +01:00
vAugagneur
c9b68af0c3
//remove debug
2012-10-09 14:15:36 +00:00
vAugagneur
f09def8298
[-] FO : fixed bug #PSCFV-4526
2012-10-04 10:17:47 +00:00
lLefevre
2628433811
[-] FO : #PSCFV-4356 : index.php added when this file not exist on the default theme
2012-09-25 08:03:42 +00:00
vAugagneur
941ac7bf81
//opti
2012-09-21 14:12:35 +00:00
rGaillard
513999a9e5
[-] FO: Fix PSCFV-4078
2012-09-21 13:06:53 +00:00
rGaillard
3b4bdc1e63
// Fix #PSCFV-3994
2012-09-20 15:24:57 +00:00
rGaillard
ef08bdb6fa
[-] FO: Fix PSCFV-3996
2012-09-13 12:39:17 +00:00