Fix purge + refresh of define info
This commit is contained in:
parent
7850ae2f4f
commit
90fa1345b0
@ -523,8 +523,9 @@ var configuratorApp = (function(){
|
|||||||
*/
|
*/
|
||||||
purgeDefineInfo: function(adv) {
|
purgeDefineInfo: function(adv) {
|
||||||
if (adv === undefined) adv = false;
|
if (adv === undefined) adv = false;
|
||||||
$('[defineInfo]').each(function() {
|
$('[name]').each(function() {
|
||||||
if (adv === this.defineInfo.adv) $(this).removeProp('defineInfo');
|
var inf = this.defineInfo;
|
||||||
|
if (inf && adv === inf.adv) $(this).removeProp('defineInfo');
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -533,8 +534,9 @@ var configuratorApp = (function(){
|
|||||||
*/
|
*/
|
||||||
refreshDefineInfo: function(adv) {
|
refreshDefineInfo: function(adv) {
|
||||||
if (adv === undefined) adv = false;
|
if (adv === undefined) adv = false;
|
||||||
$('[defineInfo]').each(function() {
|
$('[name]').each(function() {
|
||||||
if (adv == this.defineInfo.adv) this.defineInfo = self.getDefineInfo(this.id, adv);
|
var inf = this.defineInfo;
|
||||||
|
if (inf && adv == inf.adv) this.defineInfo = self.getDefineInfo(this.id, adv);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user