Ignore:
Timestamp:
11/27/13 12:06:02 (11 years ago)
Author:
csl14
Message:

Fixed startBrowserNewFrame action

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/items/widgets/JfxBrowser.java

    r539 r540  
    209209        public JfxBrowser(Text source, String[] args) {
    210210                // Initial page is either the page stored in the arguments (if there is one stored) or Google
    211                 super(source, new WebBrowserPanel((args != null && args.length > 0) ? args[0] : "http://google.com"), -1, 500, -1, -1, 300, -1);
    212 
     211                //super(source, new WebBrowserPanel((args != null && args.length > 0) ? args[0] : "http://google.com"), -1, 500, -1, -1, 300, -1);
     212                super(source, new WebBrowserPanel(args[0]), -1, 500, -1, -1, 300, -1);
    213213                _browser = (WebBrowserPanel) _swingComponent;
    214214        }
Note: See TracChangeset for help on using the changeset viewer.