kudago / smart-app-banner

Lightweight smart app banner with no jquery requirement
MIT License
526 stars 250 forks source link

Different author for ios and android #112

Open Roman9961 opened 5 years ago

Roman9961 commented 5 years ago

Hey! Help me please! Is there way to set different authors for ios and android?

muaddeepcode commented 5 years ago
  1. Add a new option to banner initialization:

new SmartBanner({ daysHidden: 15, ... author: 'We don't need it now', authorStore: { ios: 'iOS App Author', android: 'Android App Author', windows: 'Windows App Author' },

  1. Change smart-app-banner.js: <div>"+this.options.author+"</div> to ===> <div>"+this.options.authorStore[this.type]+"</div>