-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/getVariableCategoryName
- Loading branch information
Showing
4 changed files
with
95 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Modal Demos</title> | ||
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@sweetalert2/theme-borderless@3/borderless.css"> | ||
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@9/dist/sweetalert2.min.js"></script> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js" defer></script> | ||
<script src="https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine.min.js" defer></script> | ||
<script src="../../lib/quantimodo/quantimodo-web.js"></script> | ||
<script src="../js/ionIcons.js"></script> | ||
<script src="../js/qmLogger.js"></script> | ||
<script src="../js/qmHelpers.js"></script> | ||
<script src="../data/qmStaticData.js"></script> | ||
<!-- Must come after qmHelpers because we assign to qm.staticData --> | ||
<script src="../js/qmChrome.js"></script> | ||
</head> | ||
<body> | ||
<button id="popup-button">Popup</button> | ||
<button id="full-inbox-button">Full Inbox</button> | ||
<button id="compact-inbox-button">Compact Inbox</button> | ||
<script src="modals.js" defer></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
$(document).ready(function () { | ||
function swalIframeOptions(path){ | ||
return { | ||
showCancelButton: true, | ||
showConfirmButton: false, | ||
html: '<iframe width="100%" height="300" src="//web.quantimo.do/'+path+'" frameborder="0"></iframe>' | ||
} | ||
} | ||
function fireIframe(path){ | ||
Swal.fire(swalIframeOptions(path)); | ||
} | ||
$('#popup-button').click(() => { | ||
fireIframe('android_popup.html') | ||
}); | ||
$('#full-inbox-button').click(() => { | ||
fireIframe('#/app/reminders-inbox') | ||
}); | ||
$('#compact-inbox-button').click(() => { | ||
fireIframe('#/app/reminders-inbox-compact') | ||
}); | ||
}); |
c1e056f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
View recording of ionic_variables_spec.js
Cypress Dashboard
ionic_variables-ionic
BUILD LOG
c1e056f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
View recording of ionic_studies_spec.js
Cypress Dashboard
ionic_studies-ionic
BUILD LOG