a-sound-component.js 299 B

12345678910111213141516171819202122
  1. this.updateSrc = function(srcID){
  2. if (srcID) {
  3. this.src = "";
  4. this.src = srcID;
  5. }
  6. }
  7. this.refreshSrc = function(srcID){
  8. if (srcID) {
  9. if (srcID == this.src) {
  10. this.src = "";
  11. this.src = srcID;
  12. }
  13. }
  14. }