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
// USAGE: | |
// | | |
// /-> rrule (text) | |
// ^ \-> displays sentance | |
// ^ \-> change settings | |
// ^ \-> change rrule - | |
// ^ | | |
// \--<--<--<--<--<--<---/ | |
class ScheduledInvoiceForm extends React.Component { |
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
// the goal of this script is to save you time when using BOLD product options | |
// for your shopify store. it currently only works for drop down options. | |
// run it in your browser's console on the "create option" page in the bold app. | |
// fill out the values for these three variables: | |
// 1. internalName | |
// 2. publicName | |
// 3. options |
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
<?php | |
public function array_only($original, $keeping) | |
{ | |
// remove the following keys from the rendered bill object | |
$arr = []; | |
foreach ($keeping as $key) | |
{ |
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 app = angular.module('app', []); | |
app.factory('geoLoc', ['$q', '$window', function ($q, $window) { | |
'use strict'; | |
return { | |
currentPosition: function() { | |
var deferred = $q.defer(); |
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
describe('Common: recordDirective', function() { | |
var $scope, $stateParams, $state, $compile, $q, element, makeHtml; | |
// each test in this file MUST call this method | |
// to customize var form and var $scope for itself | |
makeHtml = function(nonClickable) { | |
// $scope = $scope.$new(); |
NewerOlder