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
. |
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
node-pre-gyp info it worked if it ends with ok | |
node-pre-gyp verb cli [ 'C:\\Program Files\\nodejs\\node.exe', | |
node-pre-gyp verb cli 'C:\\Users\\user\\Documents\\NODE\\fuck2\\node_modules\\fsevents\\node_modules\\node-pre-gyp\\bin\\node-pre-gyp', | |
node-pre-gyp verb cli 'install', | |
node-pre-gyp verb cli '--fallback-to-build' ] | |
node-pre-gyp info using [email protected] | |
node-pre-gyp info using [email protected] | win32 | x64 | |
node-pre-gyp verb command install [] | |
node-pre-gyp info check checked for "C:\Users\user\Documents\NODE\fuck2\node_modules\fsevents\lib\binding\Release\node-v57-win32-x64\fse.node" (not found) | |
node-pre-gyp http GET https://fsevents-binaries.s3-us-west-2.amazonaws.com/v1.0.14/fse-v1.0.14-node-v57-win32-x64.tar.gz |
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
window._talkableq = window._talkableq || []; | |
_talkableq.unshift(['init', {site_id: 'le-chateau'}]); | |
var isCurrentPath = function(paths) { | |
for (var i = 0; i < paths.length; i++) | |
if (document.location.href.indexOf(paths[i]) > -1) | |
return true; | |
return false; | |
}; |
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
!function(){if(typeof talkable == "undefined"){var e=document.createElement("script");e.type="text/javascript",e.async=!0,e.src="//d2jjzw81hqbuqv.cloudfront.net/integration/talkable-2.2.9.min.js";var t=document.getElementsByTagName("script")[0];t.parentNode.insertBefore(e,t)}}(); | |
window._talkableq = window._talkableq || []; | |
window._talkableq.push(['init', {site_id: "into-the-am"}]); | |
var isCurrentPath = function(paths) { | |
for (var i = 0; i < paths.length; i++) | |
if(document.location.pathname.indexOf(paths[i]) > -1) | |
return true; |
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
window._talkableq = window._talkableq || []; | |
var _useTrigger = true; | |
var isCurrentPath = function(path) { | |
return document.location.pathname.indexOf(path) > -1; | |
}; | |
_talkableq.unshift(['init', { site_id: 'tuango-staging' }]); | |
// Post Purchase |
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
<script src="//d2jjzw81hqbuqv.cloudfront.net/integration/clients/blink.min.js"></script> | |
<script> | |
window._talkableq = window._talkableq || []; | |
_talkableq.push(['authenticate_customer', { | |
email: '<?php echo $current_user->user_email; ?>', | |
first_name: '<?php $current_user->user_firstname; ?>', | |
last_name: '<?php $current_user->user_lastname; ?>' | |
}]); | |
window._talkableq.push(['register_affiliate', {campaign_template: 'popup-trigger'}]); |
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
<script> | |
var order = App.getOrder({version: 'v1'}); | |
var talkable_subtotal = 0; | |
if (order.subtotal > 0){ talkable_subtotal = order.subtotal / 100; } | |
var _talkable_data = { | |
purchase: { | |
order_number: order.number, | |
email: order.buyer.email, | |
first_name: order.buyer.first_name, | |
last_name: order.buyer.last_name, |
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 gulp = require('gulp'); | |
var jscs = require('gulp-jscs'); | |
gulp.task('jscs', function () { | |
return gulp.src('client-src/script/*.js') | |
.pipe(jscs()) | |
//also I've tried pipe(jscs({fix: true})).pipe(gulp.dest('src')); But it does'n work anyway | |
.pipe(jscs.reporter()); | |
}); |