New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

onbrandutilityfunctions

Package Overview
Dependencies
Maintainers
3
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

onbrandutilityfunctions

A collection of useful reusable functions for working with uberflip hubs, to be included on an as-needed basis.

2.0.14
npm
Version published
Weekly downloads
4
-33.33%
Maintainers
3
Weekly downloads
 
Created
Source

The Onbrand Utility Function Library

1. What is this, and what is it for?

This package is a collection of usefull reusable functions for building Uberflip hubs. It allows for quick, stable, bug free implementation of various features, and works in combination with the Onbrand framework to provide high-quality custom builds for clients.

The supporting documentation for the functions contained in this library can be found here: http://cihost.uberflip.com/docs/

2. How do I use it?

This library depends on jQuery. At the time of writing this, jQuery is included in all Uberflip Hubs, and so this module should be usable without importing jQuery separately.

Typically, this library would be automatically included when generating a new onbrand project. The library is to be installed via npm npm install onbrandutilityfunctions, then refferenced in your scripts via import. Here is a simple example:

import onbrandutilityfunctions from 'onbrandutilityfunctions';
onbrandutilityfunctions.doIfTag('someTag', someFunc);

These functions should be run through babel.js to ensure maximum compatibility.

3. Some Examples:

I want to execute code on every tile that has the tag blog

Hubs.Events.on('load', function(){
    onbrandutilityfunctions.doIfTag('blog', function(){
    	$(this).find('a.view').text('I changed the label!');
    })
})

I want to fade out the next item flyout before it overlaps the footer I have added to the page:

Hubs.Events.on('scroll', function(){
    onbrandutilityfunctions.fadeOutItem();
})

Keywords

uberflip

FAQs

Package last updated on 19 Oct 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts