/* * Copyright 2015 Shopeca.com **/ var texts = new function() { this.content = []; this.get = function ( code ) { if (this.content.hasOwnProperty( code )) { return this.content[code]; } return null; }; }