Subversion Repositories SmartDukaan

Rev

Rev 3096 | Rev 3137 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3096 Rev 3106
Line 223... Line 223...
223
				"iDisplayLength" : 5,
223
				"iDisplayLength" : 5,
224
				"aLengthMenu" : [ [ 5, 10, 20, -1 ], [ 5, 10, 20, "All" ] ]
224
				"aLengthMenu" : [ [ 5, 10, 20, -1 ], [ 5, 10, 20, "All" ] ]
225
			});
225
			});
226
		}
226
		}
227
	});
227
	});
228
}
-
 
229
228
}
-
 
229
 
-
 
230
function goToHomePage() {
-
 
231
	document.location.href = "/crm";
-
 
232
}
-
 
233
 
-
 
234
function loadMyOpenTickets(domId) {
-
 
235
	$.ajax({
-
 
236
		 type: "GET",
-
 
237
		 url: "/crm/ticket!getMyOpenTickets",
-
 
238
		 success: function(response){
-
 
239
			 $('#' + domId).html(response);
-
 
240
		 }
-
 
241
	 });
-
 
242
}
-
 
243