The main difference between the two pages is the method of sending messages. Recieving messages is the same in both.
Send messages to iframe using iframeEl.contentWindow.postMessage
Recieve messages using window.addEventListener('message')
| Commands | |
| ------------ | |
| 1. Build Docker Image | |
| docker build -t test . | |
| 2. Run container /w image | |
| docker run -d --publish 8888:5000 test | |
| 3. Login to ECR | |
| aws ecr get-login-password --region REGIONHERE!!!! | docker login --username AWS --password-stdin ACCOUNTIDHERE!!!!.dkr.ecr.REGIONHERE!!!.amazonaws.com |
| angular.module('animated-checkmark', []).directive('animatedCheck', animatedCheck); | |
| function animatedCheck() { | |
| const svgTemplate = ` | |
| <div class="checkmark-container"> | |
| <svg class="checkmark" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 52 52"> | |
| <g> | |
| <circle class="checkmark-outline" cx="26" cy="26" r="25" fill="none" /> | |
| <circle class="checkmark-circle" cx="26" cy="26" r="25" fill="none" /> | |
| <path class="checkmark-check" fill="none" d="M14.1 27.2l7.1 7.2 16.7-16.8" /> | |
| </g> |
| /* | |
| * jQuery Double Tap | |
| * Developer: Sergey Margaritov (github.com/attenzione) | |
| * License: MIT | |
| * Date: 22.10.2013 | |
| * Based on jquery documentation http://learn.jquery.com/events/event-extensions/ | |
| */ | |
| (function($){ |