Plugin Directory

Changeset 987111


Ignore:
Timestamp:
09/11/2014 09:17:13 AM (12 years ago)
Author:
ajanthr
Message:

New Version (version 1.0.3)

Location:
aj-easy-calculator/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • aj-easy-calculator/trunk/easycalculator.php

    r986457 r987111  
    55 * Plugin URI: http://vofoxsolutions.com
    66 * 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.2
     7 * Version: 1.0.3
    88 * Author: Ajanth R
    99 * Author URI: http://vofoxsolutions.com
     
    116116                        <div class="aj-keys">
    117117                            <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"
    121121                            value="/" onclick=\'v'.$aj.'("/")\'></p>
    122122                            <p><input type="button" class="aj-button aj-black"
     
    143143                        </div>
    144144                        <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                        }
    145158                        function c'.$aj.'(val)
    146159                        {
     
    297310                        <div class="aj-keys">
    298311                            <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"
    302315                            value="/" onclick=\'v'.$aj.'("/")\'></p>
    303316                            <p><input type="button" class="aj-button aj-black"
     
    324337                        </div>
    325338                        <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                        }
    326352                        function c'.$aj.'(val)
    327353                        {
  • aj-easy-calculator/trunk/readme.txt

    r986457 r987111  
    4040== Changelog ==
    4141
     42Version 1.0.2
    42431. Fixed plugin install issue
    43442. Added widget option to add calculator to sidebar
     
    45464. Fixed conflicts with some themes. Now compatible with almost all themes.
    4647
     48Version 1.0.3
     491. Added Memory Recall Feature (m+, m- and mrc are functioning)
     502. 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.