Give export capability to administrator

This snippet adds the export capability to the administrator user role.

om.Sites.init

document.addEventListener('om.Sites.init', function(event) { console.log(event.detail.Sites); // An array of all the Site objects associated to this campaign.…

om.Group.init

document.addEventListener('om.Group.init', function(event) { console.log(event.detail.Group); // An array of the Rule objects console.log(event.detail.Group.rules); console.log(event.detail.Campaign); } );

Una plant Quiz Score Calculator

/** * Author: Sumaiya, Clickup Doc: https://app.clickup.com/36636088/v/dc/12y1dr-22535/12y1dr-25375 * Function to handle quiz submission, calculate results based…

<10

om.Action.refresh

document.addEventListener('om.Action.refresh', function(event) { // This event is passed the Campaign object console.log(event.detail.Campaign); // This event is…

disable webfonts for a spesific campaign

document.addEventListener('om.Campaign.init.preload', function(event) { var campaign = event.detail.Campaign; if ({slug} === campaign.id) { campaign.settings.preload = false; }…

trigger monsterlink of an external link

jQuery(document).ready(function($){ // Change 'rt78pcbzrddo1y7w0yq3' to match your specific campaign slug var campaignSlug = 'rt78pcbzrddo1y7w0yq3'; // When…

Yes/No view

#om-{{id}}-yesno button.{{ns}}-CloseButton { /* Your Custom Styles */ }

css-example.css

html div#om-{{id}} [class$="-form"] { /* Your custom styles */ }

Untitled Snippet

<meta name="google-site-verification" content="dd3uXq84TzhHtU_Hb3LG5Lw0lrijOzL6AKE6A3ST1uM"

Font Weight correction for Menu Subcategories

.mc_vertical_menu h3 { font-weight: 600 !important; }

Test

var letme = 55

1 119 120 121 122 123 217