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
var tapOut = require('tap-out') | |
var spawn = require('child_process').spawn | |
var exec = require('child_process').exec | |
var map = require('lodash/collection/map') | |
var filter = require('lodash/collection/filter') | |
var forEach = require('lodash/collection/forEach') | |
function TapWebpackPlugin (formatter) { | |
this.formatter = formatter | |
} |
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
#!/bin/sh | |
if [ "$#" -eq 1 ]; then stdinmsg=$(cat); fi | |
exec <"$0" || exit; read v; read v; read v; exec /usr/bin/osascript - "$@" "$stdinmsg"; exit | |
on run | |
set pathCSVFile to (choose file with prompt "Select the CSV file" of type "csv") | |
set strCSV to read pathCSVFile | |
set pathTemplateFile to (choose file with prompt "Select the message template" of type "txt") | |
set messageTemplate to read pathTemplateFile |
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
.modal { | |
position: fixed; | |
top: 0; | |
right: 0; | |
bottom: 0; | |
left: 0; | |
z-index: 10000; | |
overflow-y: auto; | |
-webkit-overflow-scrolling: touch; | |
background: rgba(58,70,73,.7) |