Changeset 987111
- Timestamp:
- 09/11/2014 09:17:13 AM (12 years ago)
- Location:
- aj-easy-calculator/trunk
- Files:
-
- 2 edited
-
easycalculator.php (modified) (5 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
aj-easy-calculator/trunk/easycalculator.php
r986457 r987111 5 5 * Plugin URI: http://vofoxsolutions.com 6 6 * Description: A plug-in to insert a calculator at anywhere in your Wordpress site for easy calculations. This tool will come handy in real sites like real estate and subscription websites. 7 * Version: 1.0. 27 * Version: 1.0.3 8 8 * Author: Ajanth R 9 9 * Author URI: http://vofoxsolutions.com … … 116 116 <div class="aj-keys"> 117 117 <p><input style="margin-left:18px;" type="button" class="aj-button aj-gray" 118 value="mrc" onclick=\' c'.$aj.'("Created....................")\'><input type="button" class="aj-button aj-gray"119 value="m-" onclick=\' c'.$aj.'("...............by............")\'><input type="button" class="aj-button aj-gray" value="m+"120 onclick=\' c'.$aj.'(".....................Ajanth")\'><input type="button" class="aj-button aj-pink"118 value="mrc" onclick=\'mrc'.$aj.'()\'><input type="button" class="aj-button aj-gray" 119 value="m-" onclick=\'mm'.$aj.'()\'><input type="button" class="aj-button aj-gray" value="m+" 120 onclick=\'mp'.$aj.'()\'><input type="button" class="aj-button aj-pink" 121 121 value="/" onclick=\'v'.$aj.'("/")\'></p> 122 122 <p><input type="button" class="aj-button aj-black" … … 143 143 </div> 144 144 <script> 145 var ajm'.$aj.' = ""; 146 function mp'.$aj.'() 147 { 148 ajm'.$aj.' = document.getElementById("d'.$aj.'").value; 149 } 150 function mm'.$aj.'() 151 { 152 ajm'.$aj.' = ""; 153 } 154 function mrc'.$aj.'() 155 { 156 document.getElementById("d'.$aj.'").value=ajm'.$aj.'; 157 } 145 158 function c'.$aj.'(val) 146 159 { … … 297 310 <div class="aj-keys"> 298 311 <p><input style="margin-left:18px;" type="button" class="aj-button aj-gray" 299 value="mrc" onclick=\' c'.$aj.'("Created....................")\'><input type="button" class="aj-button aj-gray"300 value="m-" onclick=\' c'.$aj.'("...............by............")\'><input type="button" class="aj-button aj-gray" value="m+"301 onclick=\' c'.$aj.'(".....................Ajanth")\'><input type="button" class="aj-button aj-pink"312 value="mrc" onclick=\'mrc'.$aj.'()\'><input type="button" class="aj-button aj-gray" 313 value="m-" onclick=\'mm'.$aj.'()\'><input type="button" class="aj-button aj-gray" value="m+" 314 onclick=\'mp'.$aj.'()\'><input type="button" class="aj-button aj-pink" 302 315 value="/" onclick=\'v'.$aj.'("/")\'></p> 303 316 <p><input type="button" class="aj-button aj-black" … … 324 337 </div> 325 338 <script> 339 var ajm'.$aj.' = ""; 340 function mp'.$aj.'() 341 { 342 ajm'.$aj.' = document.getElementById("d'.$aj.'").value; 343 } 344 function mm'.$aj.'() 345 { 346 ajm'.$aj.' = ""; 347 } 348 function mrc'.$aj.'() 349 { 350 document.getElementById("d'.$aj.'").value=ajm'.$aj.'; 351 } 326 352 function c'.$aj.'(val) 327 353 { -
aj-easy-calculator/trunk/readme.txt
r986457 r987111 40 40 == Changelog == 41 41 42 Version 1.0.2 42 43 1. Fixed plugin install issue 43 44 2. Added widget option to add calculator to sidebar … … 45 46 4. Fixed conflicts with some themes. Now compatible with almost all themes. 46 47 48 Version 1.0.3 49 1. Added Memory Recall Feature (m+, m- and mrc are functioning) 50 2. No more developer credits. Removed the developer credits and developer credits will not be shown anywhere in the widget/site
Note: See TracChangeset
for help on using the changeset viewer.