Skip to content

Commit

Permalink
Merge pull request #8 from brewster1134/form_val_priority
Browse files Browse the repository at this point in the history
form_val_priority
  • Loading branch information
brewster1134 authored Sep 23, 2016
2 parents 1e55805 + 2371bdf commit f1f1829
Show file tree
Hide file tree
Showing 11 changed files with 120 additions and 110 deletions.
2 changes: 2 additions & 0 deletions .hound.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
jshint:
enabled: false
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
###### 1.0.10
* form element values take precedence over other attributes

###### 1.0.9
* support for a delay option

Expand Down
5 changes: 4 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
GEM
remote: https://rubygems.org/
specs:
sass (3.4.13)
sass (3.4.22)

PLATFORMS
ruby

DEPENDENCIES
sass (~> 3.4)

BUNDLED WITH
1.12.5
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,10 @@ It will track the first value it finds from the following:
---
#### `_value`
* `data-atrackt-value` A custom value to explicitly set
* `val` The value (if a form element)
* `title` The value of the title attribute
* `name` The value of the name attribute
* `text` The text value of the element. This contains only text and will not include any HTML.
* `val` The value (if a form element)
* `id` The value of the id attribute
* `class` The value of the class attribute

Expand Down
16 changes: 8 additions & 8 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "atrackt",
"dependencies": {
"jquery": "~2",
"jquery.scrollTo": "~1"
"jquery": "*",
"jquery.scrollTo": "*"
},
"devDependencies": {
"chai": "~1",
"chai-as-promised": "~4",
"mocha": "~1",
"sinon": "~1",
"sinon-chai": "~2",
"lolex": "sinonjs/lolex#~1"
"chai": "*",
"chai-as-promised": "*",
"mocha": "*",
"sinon": "*",
"sinon-chai": "*",
"lolex": "sinonjs/lolex"
}
}
2 changes: 1 addition & 1 deletion demo/atrackt_demo.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

76 changes: 38 additions & 38 deletions lib/atrackt.console.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f1f1829

Please sign in to comment.