manolo on master
Update README.md (compare)
manolo on master
Fix links in README.md (compare)
manolo on master
Add discontinue notice to READM… (compare)
@manolo
Hi, in latest snapshot the 1.9.4.0-SNAPSHOT i am trying to built an application layout like the one you sent to me in the link
i the layout is not loading correctly and i still have some missing elements
paper-menu
component used here is missing from the jar<p:PaperMenu ui:field="menu">
<p:PaperItem>User List</p:PaperItem>
<p:PaperItem>Videos</p:PaperItem>
<p:PaperItem>Todos</p:PaperItem>
</p:PaperMenu>
<dom-module id="foo-bar">
<template>...</template>
<script>
class FooBar extends Polymer.Element {
...
foo() { ... }
}
</script>
@Tag...
@HtmlImport...
public class Bar extends PolymerTemplate<Bar.Model> {
public Bar() {
this.getModel().foo();
}
public static interface Model extends TemplateModel {
void foo();
}
}