definition:
|
scriptShowModal :: String -> [BaseHtml]
scriptShowModal modalid =
[hStruct "script"
[htmlText $ "$(document).ready(function(){ $(\"#" ++ modalid ++
"\").modal('show'); });"
]
]
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- A JavaScript element which can be put at the end of the page body
--- in order to show a modal defined in the page after the page is loaded.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> {:}}
|
name:
|
scriptShowModal
|
precedence:
|
no precedence defined
|
result-values:
|
{:}
|
signature:
|
String -> [HTML.Base.BaseHtml]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|