Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Master #127

Open
wants to merge 44 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
0d88e96
Merge tag 'v0.2.5' into develop
brianpkelley Apr 4, 2016
fd38f3f
Merge tag 'v0.2.6' into develop
brianpkelley Apr 12, 2016
283db57
Touch device support.
mustafahlvc Apr 22, 2016
b7242a1
Prevent IE from showing a clear button
josefromsanjose May 6, 2016
6cebb49
Removed IE close Icon for color picker input only
josefromsanjose May 6, 2016
d3ec030
Add additional customization options
May 31, 2016
b98c690
Update README.md
volodymyrlut May 31, 2016
ee578d5
Disable alpha channel for HEX-only mode
May 31, 2016
6a9fc9d
Merge pull request #66 from volodymyrlut/master
brianpkelley May 31, 2016
656c696
Merge pull request #67 from josefromsanjose/patch-1
brianpkelley May 31, 2016
749c7f6
Merge branch 'master' of https://github.com/mustafahlvc/md-color-pick…
brianpkelley May 31, 2016
4685246
Merge branch 'mustafahlvc-master' into develop
brianpkelley May 31, 2016
2ed51af
travis-ci integration start
brianpkelley Jun 10, 2016
c5fc6d6
travis-ci integration start
brianpkelley Jun 10, 2016
5630f9b
travis-ci integration start
brianpkelley Jun 10, 2016
092ca90
require('es6-promise').polyfill();
brianpkelley Jun 10, 2016
6a5f723
Bug Fixes
brianpkelley Jun 10, 2016
a740426
Travis Badge
brianpkelley Jun 10, 2016
fcddd9d
Update TODO
brianpkelley Jun 10, 2016
e7bf7e4
change bower.json main attribute to load unminified js and css
langan Jul 8, 2016
dc933d8
setViewValue when clearing, fixes #55
langan Jul 8, 2016
29aed11
Merge pull request #78 from langan/develop
brianpkelley Jul 8, 2016
2967b59
Adding eclipse project settings
Sep 24, 2018
07ba62d
new product
Sep 24, 2018
ebc1356
Adding grunt config
Sep 24, 2018
279a7b1
Adding jshint config
Sep 24, 2018
a01aa94
Merge branch 'release/0.2.7' into develop
Sep 24, 2018
e06c74a
Merge branch 'release/0.2.7'
Sep 24, 2018
5c8bd26
??
Sep 24, 2018
0d9fe47
Indent HTML in directive template
Sep 24, 2018
4dd21a9
Bug fixed: clear button on RTL pages
Sep 29, 2018
c88b47c
Bug fixed: clear value on empty input value
Sep 29, 2018
2f9e846
Update version
Oct 2, 2018
bf798c2
Merge branch 'release/0.2.8' into develop
Oct 2, 2018
164d2a4
Merge branch 'release/0.2.8'
Oct 2, 2018
5f76419
Update demo based on grunt build
Oct 9, 2018
63ed292
Update grunt build process
Oct 9, 2018
49f7a66
Merge branch 'release/0.2.9'
Oct 9, 2018
075b372
Updaget project version
Oct 9, 2018
7ced40f
Merge branch 'release/0.2.9'
Oct 9, 2018
bd8499f
Merge branch 'release/0.2.9' into develop
Oct 9, 2018
ee5c78f
Ignore kde directory file
Oct 9, 2018
bdd65ae
Update group version
Oct 12, 2018
32e6b8b
Merge branch 'release/0.2.10'
Oct 12, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .bowerrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"directory": "demo/lib"
}
4 changes: 4 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
test/*
demo/*
dist/*
Gruntfile.js
36 changes: 36 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"env": {
"browser": true,
"es6": false
},
"globals": {
"angular": true,
"module": true,
"confirm": true,
"alert": true,
"toast": true,
"prompt": true,
"jsPanel": true,
"_": true,
"tinycolor": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": "off",
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
}
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ src/lib/
.idea/workspace.xml

dist/demo
demo/lib
npm-debug.log

/bower_components/
/package-lock.json
/.settings/
/.tmp/
/.directory
44 changes: 44 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
image: node:latest

cache:
paths:
- node_modules

build-project:
image: node:8
coverage: /Lines\s*:\s*(\d+\.\d+)%/
script:
# TODO: maso, 2018: install opera, firefox
- apt-get update
- apt-get -yq install chromium
- apt-get -yq install git
- npm install -g bower grunt-cli
- npm install
- bower install --allow-root
- grunt test
- find . -name lcov.info | xargs -d '\n' cat | node_modules/.bin/codacy-coverage -t $CODACY_PROJECT_TOKEN
- grunt release

artifacts:
paths:
- coverage/
- doc/
- dist/
expire_in: 1 days

pages:
stage: deploy
dependencies:
- build-project
script:
- ls -l
- mkdir .public
- mv coverage/ .public/coverage/
- mv doc/ .public/doc/
- mv .public public
artifacts:
paths:
- public
expire_in: 90 days
only:
- master
5 changes: 5 additions & 0 deletions .jscsrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"requireCapitalizedConstructors": true,
"requireParenthesesAroundIIFE": true,
"validateQuoteMarks": "'"
}
4 changes: 4 additions & 0 deletions .jshintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
test/**
demo/**
dist/**
Gruntfile.js
20 changes: 20 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"bitwise": true,
"browser": true,
"curly": true,
"eqeqeq": true,
"esnext": false,
"latedef": true,
"noarg": true,
"node": true,
"strict": true,
"undef": true,
"unused": true,
"-W100": true,
"globals": {
"angular": false,
"jsPanel": false,
"_": false,
"tinycolor": false
}
}
28 changes: 28 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>md-color-picker</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.wst.validation.validationbuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.wst.jsdt.core.jsNature</nature>
</natures>
<filteredResources>
<filter>
<id>1528927900152</id>
<name></name>
<type>10</type>
<matcher>
<id>org.eclipse.ui.ide.multiFilter</id>
<arguments>1.0-name-matches-false-true-bower_components|node_modules|coverage|nbproject|doc</arguments>
</matcher>
</filter>
</filteredResources>
</projectDescription>
34 changes: 34 additions & 0 deletions .tern-project
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"ecmaVersion": 6,
"ide": {
"scriptPaths": [
{
"type": "FOLDER",
"path": "src"
}
]
},
"plugins": {
"es_modules": {

},
"doc_comment": {
"strong": true
},
"eslint": {
"configFile": ".eslintrc.json"
},
"jscs": {
"configFile": ".jscsrc"
},
"jshint": {
"configFile": ".jshintrc"
},
"angular1": {

}
},
"libs": [
"browser"
]
}
12 changes: 12 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
language: node_js
node_js:
- '0.10.33'
before_script:
- 'export CHROME_BIN=chromium-browser'
- 'export DISPLAY=:99.0'
- 'sh -e /etc/init.d/xvfb start'
- 'npm install -g bower jshint'
- 'npm install' # install npm packages
- 'bower install' # install bower packages
script:
- 'gulp build' # or other command for build, run tests, etc
Loading