Skip to content

YasinEhsan/YasinEhsan.github.io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

YasinEhsan.github.io

Portfolio site hosted using Git Pages.

Version 3.0

Video Walkthrough

mySite

Version 2.0

Video Walkthrough

mySite GIF created with LiceCap.

Useful Links

Debug Issues

  • Trying to access non-SSL certified links from a secure connection will not work. Instead change the URL to without the protocol OR change http links to https.

    Change http://resources.infolinks.com/js/infolinks_main.js to //resources.infolinks.com/js/infolinks_main.js or httpS://resources.infolinks.com/js/infolinks_main.js

  • Found warning when I ran Chrome Inspector. Apparently Google Chrome updated Smoothscroll.js. Quick Fix: Replace

     var ischrome = /chrome/.test(navigator.userAgent.toLowerCase());
     if (ischrome) {
         ssc_addEvent("mousedown", ssc_mousedown);
         ssc_addEvent("mousewheel", ssc_wheel);
         ssc_addEvent("load", ssc_init)
     }

    with

    var ischrome = /chrome/.test(navigator.userAgent.toLowerCase());
    if (false) {                          REPLACEMENT
    	ssc_addEvent("mousedown", ssc_mousedown);
    	ssc_addEvent("mousewheel", ssc_wheel);
    	ssc_addEvent("load", ssc_init);
     }

    Note: isChrome is just a variable.

License

© 2018 Yasin Ehsan

Licensed under the Apache License.