One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
// In \Umbraco\Js\umbraco.controllers.js find this code (line 5429-5432 in version 7.1.3): | |
else if (rule.selector[0] == "#") { | |
r.inline = "span"; | |
r.attributes = { id: rule.selector.substring(1) }; | |
} | |
// directly after, add this: | |
else if (rule.selector.indexOf("p.") == 0) { | |
r.classes = rule.selector.substring(2); | |
r.block = 'p'; |