1
0
Fork 0
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:
reuk 2024-10-15 11:45:12 +01:00
parent f5cc7902b1
commit 5453192a0c
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C

View file

@ -774,7 +774,9 @@ private:
};
//==============================================================================
JavascriptEngine::JavascriptEngine() : impl (std::make_unique<Impl>())
JavascriptEngine::JavascriptEngine()
: maximumExecutionTime (15.0),
impl (std::make_unique<Impl>())
{
}