Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: opal/opal-jquery
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 513d5c24e13f
Choose a base ref
...
head repository: opal/opal-jquery
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 423476392de4
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Mar 12, 2014

  1. Update changelog

    adambeynon committed Mar 12, 2014

    Verified

    This commit was signed with the committer’s verified signature.
    eps1lon Sebastian "Sebbie" Silbermann
    Copy the full SHA
    1a7c6f5 View commit details
  2. v0.2.0

    adambeynon committed Mar 12, 2014
    Copy the full SHA
    4234763 View commit details
Showing with 8 additions and 4 deletions.
  1. +6 −2 CHANGELOG.md
  2. +1 −1 Gemfile
  3. +1 −1 lib/opal/jquery/version.rb
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
## edge

## 0.2.0 2014-03-12

* Add `Document.body` and `Document.head` shortcut to element instances.

* Add `Event` methods: `prevented?`, `prevent`, `stopped?` and `stop` to
replace longer javascript names.

* Add `LocalStorage` implementation.

* Fix Element#data() to return nil for an undefined data attribute instead
of null.
* Fix `Element#data()` to return `nil` for an undefined data attribute
instead of null.

* Expose `#detach` method on `Element`.

## 0.1.2 2013-12-01

2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source "https://rubygems.org"
gemspec

gem 'opal', :github => 'opal/opal'
gem 'opal'
gem 'opal-rspec', '0.3.0.beta2'

gem 'rake'
2 changes: 1 addition & 1 deletion lib/opal/jquery/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Opal
module JQuery
VERSION = '0.1.2'
VERSION = '0.2.0'
end
end