Guest User

Untitled

a guest
Oct 20th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. メモ
  2.  
  3. スケジュールを登録/削除したときに呼ばれます
  4. sch.onappend = function(schedule_items) {
  5. };
  6. sch.onremove = function(schedule_items) {
  7. };
  8.  
  9.  
  10. スケジュールに登録/削除されたときに呼ばれます
  11. * 引数とthis値については変更します(0.3.2にて)
  12. var schedule_item = [0, fn, args];
  13. schedule_item.onappended = function(sch) {
  14. };
  15. schedule_item.onremoved = function(sch) {
  16. };
  17.  
  18.  
  19. a <= x < b の schedule_items を返します
  20. sch.getSchedules(a, b);
  21.  
  22.  
  23. schedule_item を変更したら呼んでください
  24. sch.update();
Add Comment
Please, Sign In to add comment