Skip to content

Instantly share code, notes, and snippets.

@DinisCruz-Dev
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DinisCruz-Dev/9294163 to your computer and use it in GitHub Desktop.
Save DinisCruz-Dev/9294163 to your computer and use it in GitHub Desktop.
Eclipse Groovy script to remove loading Icon from Default webbrowser
def visible = false;
for(editor in eclipse.editors.list())
if (editor.id == "org.eclipse.ui.browser.editor")
editor.getEditor(true).webBrowser.busy.visible = visible;
def editorReference = eclipse.editors.get("Angular with Firebase Lite");
def editor = editorReference.getEditor(true);
def webBrowser = editor.webBrowser;
def busy = webBrowser.busy;
return busy.visible = false;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment