~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to www/media/browser/browser.js

  • Committer: wagrant
  • Date: 2008-07-17 06:43:18 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:911
browser: Hide 'More Actions' by default. It will be shown by JS when
         viewing a directory.

Show diffs side-by-side

added added

removed removed

Lines of Context:
759
759
    {
760
760
        var actions2_directory = document.getElementById("actions2_directory");
761
761
        actions2_directory.setAttribute("style", "display: inline;");
 
762
        var moreactions = document.getElementById("moreactions_area");
 
763
        moreactions.setAttribute("style", "display: inline;");
762
764
    }
763
765
    else
764
766
    {
765
767
        var actions2_file = document.getElementById("actions2_file");
766
768
        actions2_file.setAttribute("style", "display: inline;");
767
 
        var moreactions = document.getElementById("moreactions_area");
768
 
        moreactions.setAttribute("style", "display: none;");
769
769
    }
770
770
 
771
771
    return;