Last active
December 9, 2016 01:45
-
-
Save usergenic/d52a94a9927266ecc4c4f25b8cf6d9dc to your computer and use it in GitHub Desktop.
Verifying assetpath behavior with different vulcanize scenarios
This file contains hidden or 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
<!-- ./index.html --> | |
<link rel="import" href="src/elements/ing-app.html"> | |
<ing-app></ing-app> |
This file contains hidden or 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
<!-- ./src/elements/ing-app.html --> | |
<link rel="import" href="../../bower_components/ing-feedback/ing-feedback.html"> | |
<dom-module id="ing-app"></dom-module> |
This file contains hidden or 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
<!-- ./bower_components/ing-feedback/ing-feedback-phone.html --> | |
<dom-module id="ing-feedback-phone"></dom-module> |
This file contains hidden or 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
<!-- ./bower_components/ing-feedback/ing-feedback.html --> | |
<link rel="import" href="ing-feedback-phone.html"> | |
<dom-module id="ing-feedback"></dom-module> |
This file contains hidden or 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
<!-- $ vulcanize ./index.html --> | |
<html> | |
<head><meta charset="UTF-8"></head> | |
<body> | |
<div hidden="" by-vulcanize=""> | |
<dom-module id="ing-feedback-phone" assetpath="bower_components/ing-feedback/"> | |
</dom-module> | |
<dom-module id="ing-feedback" assetpath="bower_components/ing-feedback/"> | |
</dom-module> | |
<dom-module id="ing-app" assetpath="src/elements/"> | |
</dom-module> | |
</div> | |
<ing-app></ing-app> | |
</body> | |
</html> | |
This file contains hidden or 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
<!-- $ vulcanize ./src/elements/ing-app.html --> | |
<!-- using 1.15.1 --> | |
<!-- src/elements/ing-app.html --> | |
<html> | |
<head><meta charset="UTF-8"></head> | |
<body> | |
<div hidden="" by-vulcanize=""> | |
<dom-module id="ing-feedback-phone" assetpath="../../bower_components/ing-feedback/"> | |
</dom-module> | |
<dom-module id="ing-feedback" assetpath="../../bower_components/ing-feedback/"> | |
</dom-module> | |
</div> | |
<dom-module id="ing-app"></dom-module> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment