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
/* Shappify Inc - Product Builder App Styles */ | |
/* ============================= | |
Confirm Order | |
============================= */ | |
.steps_body #builder_addtocart_button { | |
clear: both; | |
padding-top: 10px; | |
} |
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
/* Shappify Inc - Product Builder App Styles */ | |
/* ============================= | |
Confirm Order | |
============================= */ | |
.steps_body #builder_addtocart_button { | |
clear: both; | |
padding-top: 10px; | |
} |
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
class SubmissionsController < ApplicationController | |
layout "pdf_layout" | |
skip_before_action :verify_authenticity_token | |
before_filter :verify_request_signature | |
after_filter :set_cors_headers | |
def index | |
shop = Shop.find_by_domain( params[:shop] ) | |
ShopifyAPI::Base.activate_session( ShopifyAPI::Session.new( shop.domain, shop.token ) ) |
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
Array.prototype.chunk = function(chunkSize) { | |
var R = []; | |
for (var i=0; i<this.length; i+=chunkSize) | |
R.push(this.slice(i,i+chunkSize)); | |
return R; | |
} |
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
select * from html where url = '<url of Google Drive spreadsheet>' and xpath = '//ul[contains(@id,"sheettabs")]/li/a' |