mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-09 23:34:20 +00:00
JavaScript: Reinstate default max execution time of 15 seconds
It looks like the old default accidentally went missing in
db3c2c6a52.
This commit is contained in:
parent
f5cc7902b1
commit
5453192a0c
1 changed files with 3 additions and 1 deletions
|
|
@ -774,7 +774,9 @@ private:
|
|||
};
|
||||
|
||||
//==============================================================================
|
||||
JavascriptEngine::JavascriptEngine() : impl (std::make_unique<Impl>())
|
||||
JavascriptEngine::JavascriptEngine()
|
||||
: maximumExecutionTime (15.0),
|
||||
impl (std::make_unique<Impl>())
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue