You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
property: url(var(--url-var)); /* Does not work unless --url-var = absolute path imports/ui/path/to/image.png */
244
+
/* if you want to use variables use
245
+
--url-var = url(path/to/url);
246
+
property: var(--url-var);
247
+
*/
248
+
property: url(/path/to/image.png); /* Works!!. if file is in public folder */
249
+
```
236
250
237
251
File types we supports https://github.com/meteorwebcomponents/synthesis/blob/master/packages/synthesis-file/plugin/synthesis-file.js#L19.
238
252
@@ -308,3 +322,4 @@ But there are some compatibility issues https://forums.meteor.com/t/polymer-mete
308
322
Q: I love blaze's template level subscriptions and spacebars. I dont want to lose these features when I port my app to polymer. Any help?
309
323
310
324
Ans : In my experience I find nothing that polymer cannot do which blaze can. Polymer is very easy to learn and while porting your app you'll find yourself copy pasting most of your code. For every blaze function they have solutions in polymer. We have got you covered when it comes to meteor data and subscriptions (including template level subs) Refer [mixin](https://github.com/meteorwebcomponents/mixin) .
0 commit comments