Changeset 502411
- Timestamp:
- 02/08/2012 09:45:07 PM (14 years ago)
- Location:
- jazzy-forms/trunk
- Files:
-
- 9 edited
-
back/elements.js (modified) (1 diff)
-
back/gui.css (modified) (1 diff)
-
core/Graph.php (modified) (1 diff)
-
core/Parser.php (modified) (1 diff)
-
core/Tokenizer.php (modified) (1 diff)
-
front/jazzy-forms.js (modified) (2 diffs)
-
front/tmpl-list.php (modified) (1 diff)
-
jazzy-forms.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
jazzy-forms/trunk/back/elements.js
r491567 r502411 33 33 data.options[idx].counter = counter; 34 34 }); 35 if(data.type == 'c heckbox') {35 if(data.type == 'c') { 36 36 data.checked = (data.default == "1"); 37 37 } -
jazzy-forms/trunk/back/gui.css
r491567 r502411 117 117 } 118 118 119 .jzzf_element_body fieldset ul li input , .jzzf_section > ul > li > input[type=text] {119 .jzzf_element_body fieldset ul li input[type=text], .jzzf_section > ul > li > input[type=text] { 120 120 width: 280px; 121 121 } -
jazzy-forms/trunk/core/Graph.php
r491567 r502411 7 7 $formulas = array(); 8 8 foreach($elements as $elem) { 9 $id = $elem->name;9 $id = strtolower($elem->name); 10 10 $type = $elem->type; 11 11 $types[$id] = $type; -
jazzy-forms/trunk/core/Parser.php
r499961 r502411 2 2 3 3 function jzzf_parse($notation) { 4 $tokens = jzzf_tokenize($notation); 4 try { 5 $tokens = jzzf_tokenize($notation); 6 } catch( Exception $e ) { 7 return null; 8 } 5 9 return jzzf_parse_tokens($tokens); 6 10 } -
jazzy-forms/trunk/core/Tokenizer.php
r499961 r502411 103 103 104 104 private function error($msg) { 105 echo $msg . ':' . $this->rest;105 throw(new Exception($msg . ':' . $this->rest)); 106 106 } 107 107 } -
jazzy-forms/trunk/front/jazzy-forms.js
r499961 r502411 16 16 17 17 function element_id(element) { 18 var chunks = element.attr('id').split('_');19 return chunks[chunks.length - 1];18 var id = element.attr('id'); 19 return id.substr(id.indexOf('_', 5)+1); 20 20 } 21 21 … … 220 220 }, 221 221 'if': function() { 222 return arg(0) ? arg(1) : arg(2 );222 return arg(0) ? arg(1) : arg(2, false); 223 223 }, 224 224 'true': function() { -
jazzy-forms/trunk/front/tmpl-list.php
r499961 r502411 7 7 8 8 function id($element) { 9 echo esc_attr('jzzf_' . $this->form->id . '_' . $element->name);9 echo esc_attr('jzzf_' . $this->form->id . '_' . strtolower($element->name)); 10 10 } 11 11 -
jazzy-forms/trunk/jazzy-forms.php
r499961 r502411 4 4 Plugin URI: http://www.jazzyforms.com/ 5 5 Description: Online form builder 6 Version: 0.9. 26 Version: 0.9.3 7 7 Author: Igor Prochazka 8 8 Author URI: http://www.l90r.com/ -
jazzy-forms/trunk/readme.txt
r499961 r502411 5 5 Requires at least: 3.2.1 6 6 Tested up to: 3.3.1 7 Stable tag: 0.9. 27 Stable tag: 0.9.3 8 8 9 9 Jazzy Forms is an online form generator that performs instant calculations. It's ideal for inter-active price calculators. … … 104 104 == Changelog == 105 105 106 = 0.9.3 = 107 * Fix on fix: properly treat uppercase and underscore character in IDs and formulas 108 * Correctly treat invalid/unexpected characters in formulas 109 * Correctly display "Checked by default" setting 110 * Third argument in IF function to be optional 111 106 112 = 0.9.2 = 107 113 * Ignore uppercase/lowercase for variable and function names
Note: See TracChangeset
for help on using the changeset viewer.