From 6938d5283a87a636093c8d12fc449dacefd267d8 Mon Sep 17 00:00:00 2001 From: Ludovic Stephan Date: Wed, 5 May 2021 18:03:56 +0200 Subject: [PATCH] Woops --- kfet/static/kfet/src/kpsul/models/account.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/kfet/static/kfet/src/kpsul/models/account.js b/kfet/static/kfet/src/kpsul/models/account.js index f6a88ea3..645f568d 100644 --- a/kfet/static/kfet/src/kpsul/models/account.js +++ b/kfet/static/kfet/src/kpsul/models/account.js @@ -31,11 +31,7 @@ var Account = Backbone.Model.extend({ view: function () { var view_class; -<<<<<<< HEAD if (this.is_empty_account()) { -======= - if (!this.is_valid()) { ->>>>>>> New checkout model and manager view_class = EmptyAccountView } else if (this.get("trigramme") == "LIQ") { view_class = LIQView @@ -49,13 +45,8 @@ var Account = Backbone.Model.extend({ this.view().render(); }, -<<<<<<< HEAD is_empty_account: function () { return (this.id == 0) -======= - is_valid: function () { - return (this.id != 0) ->>>>>>> New checkout model and manager }, })