Changeset 567456
- Timestamp:
- 07/04/2012 04:51:26 PM (14 years ago)
- Location:
- jazzy-forms/trunk
- Files:
-
- 2 edited
-
jazzy-forms.php (modified) (4 diffs)
-
readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
jazzy-forms/trunk/jazzy-forms.php
r566668 r567456 4 4 Plugin URI: http://www.jazzyforms.com/ 5 5 Description: Online form builder with an emphasis on calculation 6 Version: 0.9. 86 Version: 0.9.9 7 7 Author: Igor Prochazka 8 8 Author URI: http://www.l90r.com/ … … 28 28 */ 29 29 30 define(JZZF_VERSION, 0.0908); 30 define(JZZF_VERSION, 0.0909); 31 define(JZZF_VERSION_STRING, "0.0909"); 31 32 define(JZZF_OPTION_VERSION, 'jzzf_version'); 32 33 … … 48 49 49 50 function jzzf_head() { 50 wp_register_script( 'mustache', plugins_url('jazzy-forms/3rdparty/mustache.js', null, '0.3.0')); 51 wp_register_script( 'jzzf-tabs', plugins_url('jazzy-forms/back/tabs.js', null, '1.0')); 52 wp_register_script( 'jzzf-elements', plugins_url('jazzy-forms/back/elements.js', null, '1.0')); 53 wp_register_script( 'jzzf-id', plugins_url('jazzy-forms/back/id.js', null, '1.0')); 54 wp_register_script( 'jzzf-admin-js', plugins_url('jazzy-forms/back/gui.js'), array('mustache', 'jzzf-id', 'jzzf-elements', 'jzzf-tabs', 'jquery-ui-draggable'), '1.0' ); 55 wp_register_style( 'jzzf-admin-css', plugins_url('jazzy-forms/back/gui.css')); 56 wp_enqueue_script('jquery-ui-sortable'); 57 wp_enqueue_script('jzzf-admin-js'); 58 wp_enqueue_style('jzzf-admin-css'); 51 wp_register_script( 'mustache', plugins_url('jazzy-forms/3rdparty/mustache.js'), null, '0.3.0'); 52 wp_register_script( 'jzzf-tabs', plugins_url('jazzy-forms/back/tabs.js'), null, JZZF_VERSION_STRING); 53 wp_register_script( 'jzzf-elements', plugins_url('jazzy-forms/back/elements.js'), null, JZZF_VERSION_STRING); 54 wp_register_script( 'jzzf-id', plugins_url('jazzy-forms/back/id.js'), null, JZZF_VERSION_STRING); 55 wp_register_script( 'jzzf-admin-js', plugins_url('jazzy-forms/back/gui.js'), array('jquery-ui-draggable', 'jquery-ui-sortable'), JZZF_VERSION_STRING ); 56 wp_register_style( 'jzzf-admin-css', plugins_url('jazzy-forms/back/gui.css'), null, JZZF_VERSION_STRING); 57 wp_enqueue_script('mustache', '0.3.0'); 58 wp_enqueue_script('jzzf-id', null, null, JZZF_VERSION_STRING); 59 wp_enqueue_script('jzzf-elements', null, null, JZZF_VERSION_STRING); 60 wp_enqueue_script('jzzf-tabs', null, null, JZZF_VERSION_STRING); 61 wp_enqueue_script('jzzf-admin-js', null, null, JZZF_VERSION_STRING); 62 wp_enqueue_style('jzzf-admin-css', null, null, JZZF_VERSION_STRING); 59 63 } 60 64 … … 154 158 155 159 function jzzf_enqueue() { 156 wp_register_script('jazzy-forms', plugins_url('jazzy-forms/front/jazzy-forms.js'), array('jquery'), '1.0');160 wp_register_script('jazzy-forms', plugins_url('jazzy-forms/front/jazzy-forms.js'), array('jquery'), JZZF_VERSION_STRING); 157 161 wp_enqueue_script('jquery'); 158 wp_enqueue_script('jazzy-forms' );162 wp_enqueue_script('jazzy-forms', null, null, JZZF_VERSION_STRING); 159 163 } 160 164 -
jazzy-forms/trunk/readme.txt
r544665 r567456 4 4 Tags: forms, form generator, calculator, price calculator, cost estimate, quote, email 5 5 Requires at least: 3.2.1 6 Tested up to: 3. 3.17 Stable tag: 0.9. 86 Tested up to: 3.4.1 7 Stable tag: 0.9.9 8 8 9 Jazzy Forms is an online form generator that performs instant calculations. It's ideal for inter-active price calculators and for sending out cost estimates by email.9 Jazzy Forms is an online form generator that performs instant calculations. It's ideal for inter-active price calculators. 10 10 11 11 == Description == … … 21 21 * Rich number formatting 22 22 * Flexible (vertical or side-by-side) layout 23 * Formula placeholders in text output elements 23 24 * Email 24 25 … … 94 95 While the author is still working on a proper documentation, you can preview a list of available functions at https://gist.github.com/1779127 95 96 97 = Can I use results in text output fields? = 98 99 Yes, you can use text, heading and HTML elements with formulas. Wrap these formulas in double curly braces like in the following example: 100 101 `Dear {{name}}, your cost estimate is {{total+fee}}.` 102 96 103 = Do you accept donations? = 97 104 … … 111 118 112 119 == Changelog == 120 121 = 0.9.9 = 122 * Real-time templating (evaluate placeholders in text/heading/html elements) 123 * Enhance analaysis and logging tools under the hood 124 * Avoid issues with outdated cached JS scripts 113 125 114 126 = 0.9.8 =
Note: See TracChangeset
for help on using the changeset viewer.