Skip to content
This repository has been archived by the owner on Sep 15, 2018. It is now read-only.

Commit

Permalink
Fehler beim Speichern von Feldern behoben
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Gabriel committed May 25, 2012
1 parent cef2183 commit 6e8ebad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vendor/couchapp/_attachments/evab.js
Expand Up @@ -2591,10 +2591,10 @@ function generiereHtmlFuerMultipleselectOptionen(FeldName, FeldWert, Optionen) {
} }
o[this.name].push(this.value); o[this.name].push(this.value);
} else { } else {
if (myTypeOf(Feldwert) === "integer") { if (myTypeOf(this.value) === "integer") {
//typ ist Int //typ ist Int
o[this.name] = parseInt(this.value); o[this.name] = parseInt(this.value);
} else if (myTypeOf(Feldwert) === "float") { } else if (myTypeOf(this.value) === "float") {
//typ ist Float //typ ist Float
o[this.name] = parseFloat(this.value); o[this.name] = parseFloat(this.value);
} else { } else {
Expand Down

0 comments on commit 6e8ebad

Please sign in to comment.