Skip to content

Commit 8ab8fa8

Browse files
committed
Initial github release
0 parents  commit 8ab8fa8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+25375
-0
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
nbproject/
2+
3+
/vendor/
4+
/composer.lock
5+
ether-and-erc20-tokens-woocommerce-payment-gateway.zip
6+
7+
node_modules/
8+
package-lock.json

Gruntfile.js

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
module.exports = function(grunt) {
2+
3+
// Project configuration.
4+
grunt.initConfig({
5+
pkg: grunt.file.readJSON('package.json'),
6+
uglify: {
7+
epgjs: {
8+
files: {
9+
'js/ether-and-erc20-tokens-woocommerce-payment-gateway.min.js': ['js/ether-and-erc20-tokens-woocommerce-payment-gateway.js']
10+
, 'js/qrcode.min.js': ['js/qrcode.js']
11+
, 'js/jquery.qrcode.min.js': ['js/jquery.qrcode.js']
12+
}
13+
}
14+
},
15+
watch: {
16+
js: {
17+
files: [
18+
'js/ether-and-erc20-tokens-woocommerce-payment-gateway.js'
19+
, 'js/qrcode.js'
20+
, 'js/jquery.qrcode.js'
21+
],
22+
tasks: [ 'uglify' ]
23+
},
24+
}
25+
});
26+
27+
grunt.loadNpmTasks('grunt-contrib-uglify');
28+
grunt.loadNpmTasks('grunt-contrib-watch');
29+
30+
// Default task(s).
31+
grunt.registerTask('default', ['uglify']);
32+
33+
};

assets/icon-128x128.png

4.14 KB
Loading

assets/icon-256x256.png

8.02 KB
Loading

assets/icon.svg

Lines changed: 59 additions & 0 deletions
Loading

assets/screenshot-1.png

23.3 KB
Loading

assets/screenshot-10.png

31.3 KB
Loading

assets/screenshot-11.png

6.9 KB
Loading

assets/screenshot-12.png

70.9 KB
Loading

assets/screenshot-13.png

20.1 KB
Loading

0 commit comments

Comments
 (0)