Skip to content

Commit

Permalink
fix: domain update
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrewrs committed Aug 27, 2017
1 parent 6c9a16f commit 5a5d4f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions slp.js
Original file line number Diff line number Diff line change
Expand Up @@ -238,14 +238,14 @@ var loadSrtLyric = function(){
}
clearInterval(dlTmr);
// callback of loadSrtLyric
$.getScript('http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js', loadSrtLyric);
$.getScript('https://code.jquery.com/ui/1.8.24/jquery-ui.min.js', loadSrtLyric);
};
var dlTmrCbk = function(){
dlCbk(window.jQuery);
};
var dlJS = function(d, l, c){
var j = d.createElement('script');
j.src = l || 'http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js';
j.src = l || 'https://code.jquery.com/jquery-1.12.4.min.js';
j.id = 'dlJS' + new Date().getTime();
j.charset = 'utf-8';
j.onload = c || dlTmrCbk;
Expand Down

0 comments on commit 5a5d4f0

Please sign in to comment.