You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
906 B
33 lines
906 B
<?php
|
|
header('Content-Type: text/html; charset=utf-8');
|
|
$elements = explode('==========', substr(file_get_contents(__FILE__), __COMPILER_HALT_OFFSET__));
|
|
echo strtr(file_get_contents('demo.tpl'),
|
|
array(
|
|
'__DEMO__' => basename(__FILE__, '.php'),
|
|
'__JS__' => $elements[1],
|
|
'__JSPRE__' => htmlspecialchars($elements[1]),
|
|
'__HTML__' => $elements[2],
|
|
'__HTMLPRE__' => htmlspecialchars($elements[2]),
|
|
)
|
|
);
|
|
|
|
__halt_compiler();
|
|
==========
|
|
$(function(){
|
|
$('.example2').jqCron({
|
|
enabled_minute: true,
|
|
multiple_dom: true,
|
|
multiple_month: true,
|
|
multiple_mins: true,
|
|
multiple_dow: true,
|
|
multiple_time_hours: true,
|
|
multiple_time_minutes: true,
|
|
default_period: 'week',
|
|
default_value: '15 10-12 * * 1-5',
|
|
no_reset_button: false,
|
|
numeric_zero_pad: true,
|
|
lang: 'en'
|
|
});
|
|
});
|
|
==========
|
|
<div class="example2"></div> |