Skip to content

Instantly share code, notes, and snippets.

@jsphkhan
Created November 24, 2014 11:22
Show Gist options
  • Save jsphkhan/d633a6dbb65de7acb3b1 to your computer and use it in GitHub Desktop.
Save jsphkhan/d633a6dbb65de7acb3b1 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../yodlee-component/yodlee-scaffold.html">
<link rel="import" href="../yodlee-component/yodlee-notifications.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#yodlee_scaffold {
width: 100%;
height: 100%;
left: 0px;
top: 0px;
position: absolute;
}
</style>
<yodlee-scaffold responsivewidth="450px" toolbartitle="Scaffold Container" profilepic="images/profile/profile_1.jpeg" profilename="Jessica Mavericks" id="yodlee_scaffold">
<yodlee-notifications id="yodlee_notifications" notifications></yodlee-notifications>
</yodlee-scaffold>
</template>
<script>
Polymer('my-element', {
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment