'2018/01'에 해당되는 글 1건

function compareDaySegments(a, b) {
	return (b.rightCol - b.leftCol) - (a.rightCol - a.leftCol) || // put wider events first
		b.event.allDay - a.event.allDay || // if tie, put all-day events first (booleans cast to 0/1)
		a.event.time- b.event.time || // if a tie, sort by event start date
		(a.event.clCode || '').localeCompare(b.event.clCode) // if a tie, sort by event title
}
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,