File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 195195
196196 function injectJsFiles ( callback , ...names ) {
197197 let loadedCount = 0 ;
198- let radomTime = new Date ( ) . getTime ( ) ;
198+ let randomTime = new Date ( ) . getTime ( ) ;
199199 for ( let i = 0 ; i < names . length ; i ++ ) {
200200 let script = document . createElement ( 'script' ) ;
201- script . src = 'resources/js/' + names [ i ] + '?randomId=' + radomTime ;
201+ script . src = 'resources/js/' + names [ i ] + '?randomId=' + randomTime ;
202202 script . onload = ( ) => {
203203 loadedCount ++ ;
204204 if ( loadedCount >= names . length ) setTimeout ( ( ) => { callback ( ) ; } , 150 ) ;
Original file line number Diff line number Diff line change @@ -26,6 +26,6 @@ const markdownContents = {
2626 'MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n' +
2727 'GNU Affero General Public License for more details.\n\n' +
2828 'You should have received a copy of the GNU Affero General Public License\n' +
29- 'along with this program. If not, see < http://www.gnu.org/licenses/> .\n' +
29+ 'along with this program. If not, see < http://www.gnu.org/licenses/> .\n' +
3030 '```'
3131} ;
You can’t perform that action at this time.
0 commit comments