| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- // Licensed under a BSD license. See license.html for license
- 'use strict';
- ( function () {
- if ( window.frameElement ) {
- // in iframe
- document.querySelectorAll( 'a' ).forEach( a => {
- // we have to send all links to the parent
- // otherwise we'll end up with 3rd party
- // sites under the frame.
- a.addEventListener( 'click', e => {
- // opening a new tab?
- if ( a.target === '_blank' ) {
- return;
- }
- // change changing hashes?
- if ( a.origin !== window.location.origin || a.pathname !== window.location.pathname ) {
- e.preventDefault();
- }
- window.parent.setUrl( a.href );
- } );
- } );
- window.parent.setTitle( document.title );
- } else {
- if ( window.location.protocol !== 'file:' ) {
- const re = /^(.*?\/manual\/)(.*?)$/;
- const [ , baseURL, articlePath ] = re.exec( window.location.href );
- const href = `${baseURL}#${articlePath.replace( '.html', '' )}`;
- window.location.replace( href ); // lgtm[js/client-side-unvalidated-url-redirection]
- }
- }
- const parts = window.location.href.split( '/' );
- const filename = parts[ parts.length - 1 ];
- if ( filename !== 'primitives.html' && filename !== 'prerequisites.html' ) {
- let text = document.body.innerHTML;
- text = text.replace( /\[link:([\w\:\/\.\-\_\(\)\?\#\=\!\~]+)\]/gi, '<a href="$1" target="_blank">$1</a>' ); // [link:url]
- text = text.replace( /\[link:([\w:/.\-_()?#=!~]+) ([\w\p{L}:/.\-_'\s]+)\]/giu, '<a href="$1" target="_blank">$2</a>' ); // [link:url title]
- text = text.replace( /\[example:([\w\_]+)\]/gi, '[example:$1 $1]' ); // [example:name] to [example:name title]
- text = text.replace( /\[example:([\w\_]+) ([\w\:\/\.\-\_ \s]+)\]/gi, '<a href="../../examples/#$1" target="_blank">$2</a>' ); // [example:name title]
- text = text.replace( /\`(.*?)\`/gs, '<code class="notranslate" translate="no">$1</code>' ); // `code`
- document.body.innerHTML = text;
- }
- if ( window.prettyPrint ) {
- window.prettyPrint();
- }
- // help translation services translate comments.
- document.querySelectorAll( 'span[class=com]' ).forEach( elem => {
- elem.classList.add( 'translate', 'yestranslate' );
- elem.setAttribute( 'translate', 'yes' );
- } );
- if ( window.threejsLessonUtils ) {
- window.threejsLessonUtils.afterPrettify();
- }
- }() );
- // ios needs this to allow touch events in an iframe
- window.addEventListener( 'touchstart', {} );
|