2007-11-11 23:59:29 +08:00
/ *
* MooTools Extension script to support custom extensions to mootools
* /
2011-06-21 17:19:10 +08:00
var zmMooToolsVersion = '1.3.2' ;
2007-11-11 23:59:29 +08:00
/ *
* Firstly , lets check that mootools has been included and thus is present
* /
if ( typeof ( MooTools ) == "undefined" )
{
2011-06-21 17:19:10 +08:00
alert ( "MooTools not found! Please check that it was installed correctly in ZoneMinder web root." ) ;
2007-11-11 23:59:29 +08:00
}
else
{
/* Version check */
if ( MooTools . version < zmMooToolsVersion )
{
2011-06-21 17:19:10 +08:00
alert ( "MooTools version " + MooTools . version + " found.\nVersion " + zmMooToolsVersion + " required, please check that it was installed correctly in ZoneMinder web root." ) ;
2007-11-11 23:59:29 +08:00
}
}