- _loadMeltyCheese : function () {
- this.element.find('.post-image').each(function (i, headerElement) {
-
- // Create and activate
- this.appendChild(new UnlimitedPizza.MeltyCheese({
- element : $(headerElement),
- name : 'header-' + i
- }));
- this['header-' + i].activate();
- }.bind(this));
- },
-
- _loadPepperoni : function () {
- this.element.find('.pepperoni-widget').each(function (i, widgetElement) {
-
- // Create and activate
- this.appendChild(new UnlimitedPizza.Pepperoni({
- element : $(widgetElement),
- name : 'recorder-' + i
- }));
- this['recorder-' + i].activate();
- }.bind(this));
- },
-