Created
April 17, 2012 15:29
-
-
Save hatched/2406817 to your computer and use it in GitHub Desktop.
Revisions
-
hatched revised this gist
Apr 17, 2012 . 1 changed file with 5 additions and 16 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,26 +1,15 @@ //This is here to run this function on pageload. var pageCalendars = new Y.PopupCalendarGroup({ calendars: [ { start: { input: Y.one('.start-date') //additional popup-calendar configs }, end: { input: Y.one('.end-date') //additional popup-calendar configs } } ] }); -
hatched revised this gist
Apr 17, 2012 . 1 changed file with 5 additions and 48 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,67 +2,24 @@ calendars: [ { start: { input: Y.one('.start-date') //additional popup-calendar configs }, calendars: [ { start: { input: Y.one('.qa-date') //additional popup-calendar configs }, calendars: [ { start: { input: Y.one('.ship-date') //additional popup-calendar configs } } ] } ] } ] -
hatched revised this gist
Apr 17, 2012 . 1 changed file with 51 additions and 14 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,32 +1,69 @@ var pageCalendars = new Y.PopupCalendarGroup({ calendars: [ { start: { input: Y.one('.job.form_job_date_start') //additional popup-calendar configs } end: { Y.one('.job.form_job_end_date') //additional popup-calendar configs } calendars: [ { start: { input: Y.one('.position.form_job_date_start') //additional popup-calendar configs }, end: { input: Y.one('.position.form_job_end_date') //additional popup-calendar configs } }, { start: { input: Y.one('.position2.form_job_date_start') //additional popup-calendar configs }, end: { input: Y.one('.position2.form_job_end_date') //additional popup-calendar configs } } ] },{ start: { input: Y.one('.job2.form_job_date_start') //additional popup-calendar configs } end: { Y.one('.job2.form_job_end_date') //additional popup-calendar configs } calendars: [ { start: { input: Y.one('.position3.form_job_date_start') //additional popup-calendar configs }, end: { input: Y.one('.position3.form_job_end_date') //additional popup-calendar configs }, calendars: [ { start: { input: Y.one('.position4.form_job_date_start') //additional popup-calendar configs }, end: { input: Y.one('.position4.form_job_end_date') //additional popup-calendar configs } } ] } ] } ] }); -
hatched revised this gist
Apr 17, 2012 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -15,11 +15,11 @@ },{ start: Y.one('.job2.form_job_date_start'), end: Y.one('.job2.form_job_end_date'), calendars: [ { start: Y.one('.position2.form_job_date_start'), end: Y.one('.position2.form_job_end_date'), calendars: [ { start: Y.one('.position2.form_job_date_start'), end: Y.one('.position2.form_job_end_date'), -
hatched revised this gist
Apr 17, 2012 . 1 changed file with 26 additions and 7 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,13 +1,32 @@ var pageCalendars = new Y.PopupCalendarGroup({ calendars: [ { start: Y.one('.job.form_job_date_start'), end: Y.one('.job.form_job_end_date'), calendars: [ { start: Y.one('.position.form_job_date_start'), end: Y.one('.position.form_job_end_date'), }, { start: Y.one('.position2.form_job_date_start'), end: Y.one('.position2.form_job_end_date'), } ] },{ start: Y.one('.job2.form_job_date_start'), end: Y.one('.job2.form_job_end_date'), contains: [ { start: Y.one('.position2.form_job_date_start'), end: Y.one('.position2.form_job_end_date'), contains: [ { start: Y.one('.position2.form_job_date_start'), end: Y.one('.position2.form_job_end_date'), } ] } ] }, ] }); -
hatched created this gist
Apr 17, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ var pageCalendars = new Y.PopupCalendarGroup({ container: Y.one('.content .side_control'), calendars: [ { input: Y.one('#form_job_date_start'), start: true }, { input: Y.one('#form_job_end_date'), end: true } ] });