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 FacebookDataFeedController < ApplicationController | |
| def export | |
| @products = Spree::Product.available | |
| respond_to do |format| | |
| format.csv { send_data @products.to_fb_csv, filename: "facebook-data-feed.csv" } | |
| end |
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
| <html> | |
| <head> | |
| <script type='text/javascript' src='http://code.jquery.com/jquery-1.9.1.min.js'></script> | |
| <script type='text/javascript' src='//cdn.sublimevideo.net/js/wkc49gq2-beta.js'></script> | |
| <script type='text/javascript'> | |
| sublime.load(); | |
| sublime.ready(function(){ | |
| $('#load_video').click(function(e){ | |
| sublime.prepare("video1", function(player) { | |
| // player is now ready. |
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
| <div id="border_wrap"> | |
| <video width="640" height="360"></video> | |
| </div> | |
| <style> | |
| #border_wrap { | |
| width:640px; /* Same width than the video tag */ | |
| height:360px; /* Same height than the video tag */ | |
| padding:2px; /* If you want a 1px border add a padding of 2px, 2px border / 4px padding, etc */ | |
| background-color:red; /* Change the color you want for the border here */ |