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
import csv | |
import os | |
from os.path import join, getsize | |
ROOTURL = 'http://www.mozilla.org' | |
ROOTSVN = 'http://viewvc.svn.mozilla.org/vc/projects/mozilla.org/trunk' | |
with open('test.csv', 'wb') as csvfile: | |
csvwriter = csv.writer(csvfile, delimiter=',', | |
quotechar='|', quoting=csv.QUOTE_MINIMAL) |
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
// Close modal on clicking close button or background. | |
$document.on('click', '#modal .close', flicks.closeModal); | |
//$document.on('click', '#modal.bg_close', flicks.closeModal); | |
$(function() { | |
/* Share Widget *******/ | |
var $share = $('.share'); | |
var $popup = $share.find('.popup'); |
NewerOlder