blob: ede48424feec2c9afb1885b307a120435527f4c3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
function toggle()
{
var helloElem = document.getElementById("hello");
var hello_againElem = document.getElementById("hello_again");
if(state == 'hello')
{
helloElem.style.display = 'none';
hello_againElem.style.display = 'block';
state='hello_again';
}
else
{
helloElem.style.display = 'block';
hello_againElem.style.display = 'none';
state='hello';
}
}
var state = 'hello';
toggle = function()
{
var helloElem = document.getElementById("hello");
var hello_againElem = document.getElementById("hello_again");
if(state == 'hello')
{
helloElem.style.display = 'none';
hello_againElem.style.display = 'block';
state='hello_again';
}
else
{
helloElem.style.display = 'block';
hello_againElem.style.display = 'none';
state='hello';
}
};