This is the reference point. All the other options are based off this.
|-- app
| |-- controllers
| | |-- admin
| // Demo at http://codepen.io/jondaiello/full/YWRbOx/ | |
| /* This mixin is for generating CSS arrows on a box */ | |
| @mixin box-arrow($arrowDirection, $arrowColor, $arrowSize: 10px) { | |
| position: relative; | |
| z-index: 10; | |
| &::after { | |
| content: ''; | |
| width: 0; | |
| height: 0; |
| var myConfObj = { | |
| iframeMouseOver : false | |
| } | |
| window.addEventListener('blur',function(){ | |
| if(myConfObj.iframeMouseOver){ | |
| console.log('Wow! Iframe Click!'); | |
| } | |
| }); | |
| document.getElementById('YOUR_CONTAINER_ID').addEventListener('mouseover',function(){ |