diff --git a/nodes/core/core/20-inject.html b/nodes/core/core/20-inject.html index 23af4a31f..276e5fea4 100644 --- a/nodes/core/core/20-inject.html +++ b/nodes/core/core/20-inject.html @@ -141,9 +141,7 @@ // seconds step: 60 * 1000, // hours - page: 60, - min:0, - max:(23*60+59)*60*1000 + page: 60 }, _parse: function( value ) { if ( typeof value === "string" ) { @@ -152,7 +150,7 @@ return Number( value ); } var p = value.split(":"); - return ((p[0]*60)+Number(p[1]))*60*1000; + return ((Number(p[0])*60)+Number(p[1])+300)*60*1000; } return value; },