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
!function(e,n,t,a,o,c,r,s,i){e[o]||(r=e[o]=function(){r.track=arguments}, | |
c=n.createElement(t),c.src=a,c.async=!0,c.addEventListener('load',function(){ | |
r.track&&e[o].apply(this,r.track)}),s=n.getElementsByTagName(t)[0],s.parentNode.insertBefore(c,s)) | |
}(window,document,'script','//www.googleadservices.com/pagead/conversion_async.js', | |
'google_trackConversion'); |
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
/*! | |
* utils.js | |
* | |
* Copyright (c) 2014 | |
*/ | |
define([ | |
'underscore', | |
],function (_) { |
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
/*! | |
* analytics.js | |
* | |
* Copyright (c) 2014 | |
*/ | |
define([ | |
'require', | |
'env' | |
], function (require, env) { |
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
/*! | |
* tbl.less | |
* Version: 1.0 | |
*/ | |
/*** TABLE OF CONTENTS *** | |
* | |
* 1. Mixins | |
* 2. tbl | |
*/ |
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
define([ | |
'underscore' | |
], function (_) { | |
// ---------------------------------------------------------------------------- | |
// utils | |
// ---------------------------------------------------------------------------- | |
var utils = {}; |
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
;(function (id, name, context, definition) { | |
// -------------------------------------------------------------------------- | |
// Dependencies | |
// | |
// This is an attempt to make this library compatible with multiple module | |
// formats. Other UMD implementations do not take into account dependencies: | |
// Example: https://github.com/ForbesLindesay/umd/blob/master/template.js | |
// | |
// **NOTE: Named AMD modules are more suitable for libraries as it provides |
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
// | |
// Get text width of a specified element. | |
// | |
function measureWidth(el, str) { | |
// Create dummy elem | |
var div = documtent.createElement('div'); | |
// Append | |
document.body.appendChild(div); | |