var Author = {
//default config
config: {
el: '#author',
name: 'Author Name',
url: 'empty.com'
},
init: function (config) {
var cfg = this.config = $.extend({}, this.config, config);
$(cfg.el).html('');
$(cfg.el).innerHTML = cfg.name;
}
};
$(function () {
Object.create(Author).init({
el: '#',
name: "",
url: "https://.github.io/"
});
Object.create(Author).init({
el: '#',
name: '',
url: "http://.com/"
});
});
Photo Gallery