/* Filename:    J015_SuffixCrLf.js
 * Description: Suffix Enter example (done in store.processData so it affects decode and manual entry)
 * Copyright:   2006 The Code Corporation. Please see http://www.codecorp.com/jsLicensing.html for information regarding copyright and grant of license.
 * $Revision: 118 $
 * $Date: 2006-12-05 16:26:51 -0700 (Tue, 05 Dec 2006) $
 */

include(".crx.js");

var oldProcessData = store.processData; // affects decode and manual entry

store.processData = function(data)
{
    return oldProcessData(data + "\r\n");
}



//EOF