This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* MailPoet Form Provider class for Hogan Form | |
* | |
*/ | |
declare( strict_types = 1 ); | |
namespace Dekode\Hogan; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*~ | |
.DS_Store | |
.svn | |
.cvs | |
*.bak | |
*.swp | |
*.log | |
Thumbs.db | |
.htaccess | |
.idea |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<ul> | |
<li>Test</li> | |
<li>Test 2</li> | |
<li>Test 3</li> | |
</ul> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="table-selection"> | |
<a href="javascript://" class="btn selected" title="100 gram" data-table-reference="hundred-grams">100 gram</a><a href="javascript://" class="btn" title="Per porsjon" data-table-reference="pr-portion">Per porsjon</a><a href="javascript://" class="btn" title="Referanseinntak" data-table-reference="reference-consume">Referanseinntak</a> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var dom = fl.getDocumentDOM(); | |
// array of selected library items | |
var selItems = dom.library.getSelectedItems(); | |
var count = selItems.length; | |
for(var i=0; i<count; i++) | |
{ | |
currentItem = selItems[i]; | |
//check that the selected item is a font | |
if(currentItem.itemType == "font") | |
{ |