Changeset 398
- Timestamp:
- 2008-06-19 13:33:37 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/kauri-forms/kauri-forms-framework/src/main/kauri/js/form.js
r396 r398 73 73 Form.prototype.initDataURIs = function(conf) { 74 74 if (conf.dataURI != undefined) 75 this._dataURITemplate = new $kp.Template(conf.dataURI);75 this._dataURITemplate = new kp.UriTemplate(conf.dataURI); 76 76 delete conf.dataURI; 77 77 } … … 79 79 80 80 Form.prototype.submit = function() { 81 if (! this.validate() .isValid()) {81 if (! this.validate()) { 82 82 alert("This is not a valid form. \nSubmit canceled."); 83 83 return;
Note: See TracChangeset
for help on using the changeset viewer.