mirror of
https://github.com/icecoder/ICEcoder.git
synced 2026-03-04 15:54:00 +01:00
Taller help screen and dataMessage function
Help screen is now taller to accomodate 4 new FM actions dataMessage function available to display DIV and then add message into it on demand
This commit is contained in:
@@ -1345,7 +1345,7 @@ var ICEcoder = {
|
||||
|
||||
// Show the help screen
|
||||
helpScreen: function() {
|
||||
top.document.getElementById('mediaContainer').innerHTML = '<iframe src="lib/help.php" class="whiteGlow" style="width: 400px; height: 500px"></iframe>';
|
||||
top.document.getElementById('mediaContainer').innerHTML = '<iframe src="lib/help.php" class="whiteGlow" style="width: 400px; height: 555px"></iframe>';
|
||||
top.ICEcoder.showHide('show',top.document.getElementById('blackMask'));
|
||||
},
|
||||
|
||||
@@ -1480,6 +1480,15 @@ var ICEcoder = {
|
||||
return prompt(question,defaultValue);
|
||||
},
|
||||
|
||||
// Show a data screen message
|
||||
dataMessage: function(message) {
|
||||
var dM;
|
||||
|
||||
dM = top.ICEcoder.content.contentWindow.document.getElementById('dataMessage');
|
||||
dM.style.display = "block";
|
||||
dM.innerHTML = message;
|
||||
},
|
||||
|
||||
// ==============
|
||||
// TABS
|
||||
// ==============
|
||||
|
||||
Reference in New Issue
Block a user