Skip to content

Commit

Permalink
updated placeholders
Browse files Browse the repository at this point in the history
  • Loading branch information
vatz88 committed Dec 27, 2016
1 parent d10a85d commit 4972589
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/autocomplete_course.js
Expand Up @@ -35,7 +35,7 @@ function getSlots(searchCode) {
$.each(all_data, function (key, value) {
if (value.CODE == searchCode) {
// append slots to add course panel
if(total % BUTTONS_PER_ROW === 0) {
if (total % BUTTONS_PER_ROW === 0) {
btnGrpHtml += btnGrpHtml ? '</div>' : '';
insert += btnGrpHtml;
btnGrpHtml = '';
Expand Down Expand Up @@ -82,7 +82,7 @@ var courseCodeOption = {
}
},

placeholder: "eg: ITE1008"
placeholder: "Search..."
};

var courseTitleOption = {
Expand All @@ -109,7 +109,7 @@ var courseTitleOption = {
}
},

placeholder: "eg: Open Source programming"
placeholder: "Search..."
};

$("#inputCourseTitle").easyAutocomplete(courseTitleOption);
Expand Down

0 comments on commit 4972589

Please sign in to comment.