Changeset 6401

Show
Ignore:
Timestamp:
08/19/08 14:36:18 (5 months ago)
Author:
FND
Message:

minor corrections

Location:
Trunk/contributors/FND/plugins
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • Trunk/contributors/FND/plugins/SimpleSearchPlugin.js

    r6399 r6401  
    7979}; 
    8080 
    81 config.shadowTiddlers.StyleSheetSimpleSearch = "/*{{{*/\n" 
    82         + "#" + plugins.SimpleSearchPlugin.containerId + " {\n" 
    83         + "\toverflow: auto;\n" 
    84         + "\tpadding: 5px 1em 10px;\n" 
    85         + "\tbackground-color: [[ColorPalette::TertiaryPale]];\n" 
    86         + "}\n\n" 
    87         + "#" + plugins.SimpleSearchPlugin.containerId + " h1 {\n" 
    88         + "\tmargin-top: 0;\n" 
    89         + "\tborder: none;\n" 
    90         + "}\n\n" 
    91         + "#" + plugins.SimpleSearchPlugin.containerId + " ul {\n" 
    92         + "\tmargin: 0.5em;\n" 
    93         + "\tpadding-left: 1.5em;\n" 
    94         + "}\n\n" 
    95         + "#" + plugins.SimpleSearchPlugin.containerId + " .button {\n" 
    96         + "\tdisplay: block;\n" 
    97         + "\tborder-color: [[ColorPalette::TertiaryDark]];\n" 
    98         + "\tpadding: 5px;\n" 
    99         + "\tbackground-color: [[ColorPalette::TertiaryLight]];\n" 
    100         + "}\n\n" 
    101         + "#" + plugins.SimpleSearchPlugin.containerId + " .button:hover {\n" 
    102         + "\tborder-color: [[ColorPalette::SecondaryMid]];\n" 
    103         + "\tbackground-color: [[ColorPalette::SecondaryLight]];\n" 
    104         + "}\n\n" 
    105         + "#" + plugins.SimpleSearchPlugin.btnCloseId + " {\n" 
    106         + "\tfloat: right;\n" 
    107         + "\tmargin: -5px -1em 5px 5px;\n" 
    108         + "}\n\n" 
    109         + "#" + plugins.SimpleSearchPlugin.btnOpenId + " {\n" 
    110         + "\tfloat: left;\n" 
    111         + "\tmargin-top: 5px;\n" 
    112         + "}\n" 
    113         + "/*}}}*/"; 
     81config.shadowTiddlers.StyleSheetSimpleSearch = "/*{{{*/\n" + 
     82        "#" + plugins.SimpleSearchPlugin.containerId + " {\n" + 
     83        "\toverflow: auto;\n" + 
     84        "\tpadding: 5px 1em 10px;\n" + 
     85        "\tbackground-color: [[ColorPalette::TertiaryPale]];\n" + 
     86        "}\n\n" + 
     87        "#" + plugins.SimpleSearchPlugin.containerId + " h1 {\n" + 
     88        "\tmargin-top: 0;\n" + 
     89        "\tborder: none;\n" + 
     90        "}\n\n" + 
     91        "#" + plugins.SimpleSearchPlugin.containerId + " ul {\n" + 
     92        "\tmargin: 0.5em;\n" + 
     93        "\tpadding-left: 1.5em;\n" + 
     94        "}\n\n" + 
     95        "#" + plugins.SimpleSearchPlugin.containerId + " .button {\n" + 
     96        "\tdisplay: block;\n" + 
     97        "\tborder-color: [[ColorPalette::TertiaryDark]];\n" + 
     98        "\tpadding: 5px;\n" + 
     99        "\tbackground-color: [[ColorPalette::TertiaryLight]];\n" + 
     100        "}\n\n" + 
     101        "#" + plugins.SimpleSearchPlugin.containerId + " .button:hover {\n" + 
     102        "\tborder-color: [[ColorPalette::SecondaryMid]];\n" + 
     103        "\tbackground-color: [[ColorPalette::SecondaryLight]];\n" + 
     104        "}\n\n" + 
     105        "#" + plugins.SimpleSearchPlugin.btnCloseId + " {\n" + 
     106        "\tfloat: right;\n" + 
     107        "\tmargin: -5px -1em 5px 5px;\n" + 
     108        "}\n\n" + 
     109        "#" + plugins.SimpleSearchPlugin.btnOpenId + " {\n" + 
     110        "\tfloat: left;\n" + 
     111        "\tmargin-top: 5px;\n" + 
     112        "}\n" + 
     113        "/*}}}*/"; 
    114114store.addNotification("StyleSheetSimpleSearch", refreshStyles); 
    115115 
  • Trunk/contributors/FND/plugins/TeamTasksCLI.js

    r6390 r6401  
    9898}; 
    9999 
    100 // hijack Store.saveTiddler() to modify fields 
     100// hijack TiddlyWiki.saveTiddler() to modify fields 
    101101TiddlyWiki.prototype.saveTiddler_TTCLI = TiddlyWiki.prototype.saveTiddler; 
    102102TiddlyWiki.prototype.saveTiddler = function(title, newTitle, newBody, modifier, 
  • Trunk/contributors/FND/plugins/ToDoTogglePlugin.js

    r6390 r6401  
    5454}; 
    5555 
    56 // hijack Store.saveTiddler() 
     56// hijack onClickCheckbox() 
    5757config.macros.checkbox.onClickCheckbox_todoToggle = config.macros.checkbox.onClickCheckbox; 
    5858config.macros.checkbox.onClickCheckbox = function(event) {