Skip to content

Commit e70e8ca

Browse files
author
Philipp
committed
Initial release
0 parents  commit e70e8ca

File tree

3 files changed

+33
-0
lines changed

3 files changed

+33
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.idea/*
2+
bower_components/*

bower.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "philsweb.jquery-codemirror",
3+
"homepage": "https://github.com/philsweb/philsweb.jquery-codemirror",
4+
"authors": [
5+
"Philipp Nikolajev <philipp.nikolajev@gmail.com>"
6+
],
7+
"description": "jQuery plugin, CodeMirror wrapper. codemirror.net",
8+
"main": "",
9+
"keywords": [
10+
"jquery",
11+
"javascript",
12+
"codemirror",
13+
"wrapper"
14+
],
15+
"license": "MIT",
16+
"ignore": [
17+
"**/.*",
18+
"node_modules",
19+
"bower_components",
20+
"test",
21+
"tests"
22+
],
23+
"dependencies": {
24+
"jquery": "^3.3.1"
25+
}
26+
}

philsweb.jquery.codemirror.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
(function ($) {
2+
$.fn.codemirror = function (options) {
3+
4+
};
5+
})(jQuery);

0 commit comments

Comments
 (0)