Headings from h1 through h6 are constructed with a # for each level:
# h1 Heading
## h2 Heading
### h3 Heading| <aura:component implements="force:lightningQuickAction,force:hasRecordId"> | |
| <aura:handler name="init" value="{!this}" action="{!c.doInit}" /> | |
| Loading data, please wait. . . | |
| </aura:component> |
| /* | |
| MyController cnt = new MyController(); | |
| cnt.tst.Name = 'test'; | |
| cnt.tst = null; | |
| system.debug('Test outside: '+(cnt.tst.Name == null)); //Test outside: true | |
| system.debug('Test outside: '+(cnt.tst == null)); //Test outside: true | |
| system.debug('Test outside: '+json.serializepretty(cnt.tst)); //Test outside: null | |
| cnt.myMethod(); //Throws null pointer exceptions | |
| */ | |
| public class MyController { |
| /** | |
| * Title | |
| * | |
| * @author | |
| * @version 1.0 | |
| * @description | |
| * @uses | |
| * @history | |
| * yyyy-mm-dd : | |
| */ |
| /** | |
| * Title | |
| * | |
| * @author | |
| * @version 1.0 | |
| * @description | |
| * @uses | |
| * @history | |
| * yyyy-mm-dd : | |
| */ |
| /** | |
| * Title | |
| * | |
| * @author | |
| * @version 1.0 | |
| * @description | |
| * @uses | |
| * @history | |
| * yyyy-mm-dd : | |
| */ |
| /** | |
| * Class description | |
| * | |
| * @author FirstName LastName | |
| * @version 1.0 | |
| * @description Class description | |
| * @testedIn ClassNameTest | |
| * @uses Class1, Class2 | |
| * @code | |
| * @history |
| /* Chrome DOM i18n: Easy i18n for your Chrome extensions and apps' DOM. | |
| * 2011-06-22 | |
| * | |
| * By Eli Grey, http://eligrey.com | |
| * Public Domain. | |
| * NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. | |
| */ | |
| /*jslint laxbreak: true, strict: true*/ | |
| /*global self, chrome, document*/ |
| Gist of Centralized Async Handling via Queueable Apex | |
| For accompanying presentation see http://scottbcovert.github.io/queueable-apex | |
| NOTE: The following source alone will not compile as it is one piece of a larger Force.com development framework available at https://github.com/scottbcovert/Centralized-Salesforce-Dev-Framework |
| <html> | |
| <head> | |
| <style> | |
| .active-link{ | |
| font-weight: bold; | |
| color: blue; | |
| cursor: pointer; | |
| } | |
| </style> |