Changeset - ca3f2109a8b9
[Not reviewed]
default
0 1 0
Nathan Brink (binki) - 15 years ago 2011-03-28 22:51:52
ohnobinki@ohnopublishing.net
Fix invalidly formatted JSON (extraneous comma).
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
scripts/scheduleInput.js
Show inline comments
 
@@ -82,25 +82,25 @@ function addTips()
 
 jQuery('td:first', td).qtip(
 
   {
 
      content: 'Start typing your class ID (such as ' + slate_permutate_example_course_id + ') and click a suggestion to add sections',
 
      style: {
 
        tip: true,
 
        classes: "ui-tooltip-dark ui-tooltip-shadow ui-tooltip-rounded"
 
      },
 
      show: {
 
        ready: true
 
      },
 
      position:{
 
        my: 'top left', 
 
        at: 'bottom right',
 
        at: 'bottom right'
 
      }
 
    }
 
  );
 

	
 
}
 

	
 
/**
 
 * \brief
 
 *   Add a section to a class.
 
 */
 
function add_section_n(cnum, name, synonym, stime, etime, days, instructor, location, type)
 
{
0 comments (0 inline, 0 general)