scheduler addMarkedTimespan minute based blocking

Hello,

        scheduler.addMarkedTimespan({
                start_date: new Date(2015, 1, 14, 13),
                end_date: new Date(2015, 1, 14, 15),
                type: "dhx_time_block", // will act as blocked section
                css: "yellow_section",
                sections: {
                        //timeline: 2, // only 1 section
                        unit: [1,2,3,4,5,6,7,8,9,10]
                }
        });    

instead of hour based blocking I need to block particular minute .
for example,
I need to block 11.32 to 12:42 ,
please help me how to fix this issue .
thanks .

Hello,
you can specify a minute part in a Date constructor, it will work with addMarkedTimespan

scheduler.addMarkedTimespan({ start_date: new Date(2015, 1, 14, 13, 32), end_date: new Date(2015, 1, 14, 15, 42),

thanks alot