This file contains 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
{ | |
title: 'Envestnet is Fully Vested™ in connecting people’s daily financial lives with their long-term goals', | |
stories: [ | |
{ | |
// First story... | |
heroHeadline: { | |
showArrowIcon: true, | |
stats: '65%', | |
}, | |
heroVideoCarousel: { |
This file contains 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
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"title": "NI Compare Page API", | |
"description": "A sample response from the Experience API that will feed NI's Compare Page", | |
"type": "object", | |
"definitions": { | |
"productData": { | |
"type": "object", | |
"properties": { | |
"attribute": { |
This file contains 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
{ | |
"compareIds": [ | |
{ | |
"id": "124878", | |
"kbmaxId": "", | |
"productName": "USB-5132", | |
"shortDescription": "50 MHz Bandwidth, 2-Channel, 8-Bit USB Oscilloscope Device", | |
"longDescription": "The USB‑5132 low-cost oscilloscope device has two channels that sample up to 50 MS/s with flexible settings for coupling, impedance, voltage range, and filtering. Oscilloscope devices also feature a number of triggering modes and an instrument driver that includes data streaming and analysis functions. This device is ideal for portable and benchtop applications with fast signals that require flexible measurement configurations and up to 50 MHz of analog bandwidth.", | |
"listPrice": "475300.0", | |
"unitPrice": "475300.0", |
This file contains 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
{ | |
"errorType": { | |
"parentErrorType": { | |
"parentErrorType": null, | |
"identifier": "ANY", | |
"namespace": "MULE" | |
}, | |
"identifier": "INTERNAL_SERVER_ERROR", | |
"namespace": "HTTP" | |
}, |
This file contains 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
{ | |
"filters": [ | |
{ | |
"id": "cableType", | |
"name": "Cable Type", | |
"description": "Select what kind of ports your product has", | |
"typeId": "structuredMulti", | |
"order": 10, | |
"isPinned": true, | |
"options": [ |
This file contains 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
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"title": "NI Category Page API", | |
"description": "A sample response from the Experience API that will feed NI's Category Page", | |
"type": "object", | |
"definitions": { | |
"filter": { | |
"type": "object", | |
"properties": { | |
"id": { |
This file contains 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
NIUA.prototype.getDetails = function () { | |
var that = this; | |
var promise = new Promise(function (resolve, reject) { | |
var data = {}; | |
if (that.getCookie("profile_id") != null) { | |
if (sessionStorage.getItem("NIUA_details")) { | |
var returnedValue = JSON.parse(sessionStorage.getItem("NIUA_details")); | |
var expiryTime = new Date().getTime() - (that.appConfig.minutesBeforeExpire * 60 * 1000); | |
if (parseInt(returnedValue.timestamp) < expiryTime) { | |
/* Data is cached but it has already expired - reload it and re-cache it */ |
This file contains 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
<script> | |
var $jquery = window.jQuery, | |
isResultsLoaded = {}, | |
select = (query, item = document) => item.querySelector(query), | |
selectAll = (query, item = document) => item.querySelectorAll(query), | |
insertAfter = (newNode, referenceNode) => referenceNode.parentNode.insertBefore(newNode, referenceNode.nextSibling), | |
productLineEl, | |
productLine2, | |
filterDropdownEls, | |
filtersEls, |
This file contains 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
.homepage-hero { | |
display: flex; | |
flex-direction: column; | |
margin-top: 70px; | |
margin-bottom: 5px; | |
@include breakpoint(tablet){ | |
margin-top: 50px; | |
} |
This file contains 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
$nav-height: 70px; | |
.homepage-hero { | |
display: flex; | |
flex-direction: column; | |
margin-top: 70px; | |
margin-bottom: 5px; | |
@include breakpoint(tablet){ | |
margin-top: 50px; |
NewerOlder