remove common/script/src

This commit is contained in:
Matteo Pagliazzi
2016-02-29 16:35:35 +01:00
parent cbb29eac55
commit 7c5572608f
36 changed files with 0 additions and 3051 deletions

View File

@@ -1,32 +0,0 @@
import {each} from 'lodash';
let subscriptionBlocks = {
basic_earned: {
months: 1,
price: 5
},
basic_3mo: {
months: 3,
price: 15
},
basic_6mo: {
months: 6,
price: 30
},
google_6mo: {
months: 6,
price: 24,
discount: true,
original: 30
},
basic_12mo: {
months: 12,
price: 48
}
};
each(subscriptionBlocks, function(block, key) {
block.key = key;
});
export default subscriptionBlocks;