Steve Heffernan
468b07c651
Merge branch 'browserify' of git://github.com/gkatsev/video-js into gkatsev-browserify
2014-02-13 14:51:30 -08:00
Steve Heffernan
12c830049e
Updated changelog
2014-02-11 17:21:24 -08:00
Steve Heffernan
fe4c477da6
Switch this.content references to use the standard this.contentEl_
...
Also cleaned up some comments and formatting.
2014-02-11 17:20:07 -08:00
Steve Heffernan
24125bbb63
Merge branch 'patch-1' of git://github.com/MrAvenger/video.js into MrAvenger-patch-1
2014-02-11 15:36:06 -08:00
Steve Heffernan
e73bb869ce
Merge pull request #1005 from uniphil/patch-1
...
Create 'track' element in the HTML5 shiv sample
2014-02-10 17:30:41 -08:00
Steve Heffernan
5c907e1ce2
Added missing file from minified test suite
2014-02-10 17:24:48 -08:00
Steve Heffernan
8c59405d86
Added missing files from standard test suite
2014-02-10 17:14:46 -08:00
Steve Heffernan
7ade43d91d
Merge branch 'bugfix/lastseek-cleanup' of git://github.com/dmlap/video-js into dmlap-bugfix/lastseek-cleanup
2014-02-10 16:17:30 -08:00
Steve Heffernan
49656ab013
Merge branch 'master' of github.com:videojs/video.js
2014-02-10 16:09:32 -08:00
Steve Heffernan
6f83d0b00e
Merge branch 'karma-update' of git://github.com/christophercurrie/video.js into christophercurrie-karma-update
...
Conflicts:
test/karma.conf.js.example
2014-02-10 16:08:47 -08:00
Phil Schleihauf
71ba5bb062
Create 'track' element in the HTML5 shiv sample
...
Matches the shiv to the one at [the start of `src/js/core.js`](https://github.com/videojs/video.js/blob/master/src/js/core.js#L8 ).
Right now it's missing `track`.
2014-02-10 15:40:32 -05:00
Steve Heffernan
11e7028c25
Merge pull request #999 from mmcc/document-passing-element
...
Update docs to reflect being able to pass an element instead of ID.
2014-02-07 16:53:19 -08:00
Matthew McClure
7926c2d9a6
syntax highlighting and some clarity
2014-02-07 16:52:15 -08:00
Matthew McClure
2b1291816f
Update docs to reflect being able to pass an element instead of ID. Closes #844
2014-02-07 16:26:49 -08:00
Gary Katsevman
4d9d06e1c9
Enable building videojs with browserify.
...
This uses browserify-shim to get browserify to recognize videojs.
It uses dist/video-js/video.js for the main file of the module.
To build using browserify, you just run browserify on the module and
use --standalone (or -s) to make it produce a UMD file.
This seems to work just fine in the browser (and requirejs looks like
it'll work, though, I haven't tested it) but it won't work in node right
now because videojs is doing a lot of stuff with 'document' directly and
its causing problems in node.
2014-02-07 18:28:41 -05:00
Steve Heffernan
0fc76451f9
Adding line to CHANGELOG
2014-02-06 17:15:19 -08:00
Matthew McClure
3cb41c7786
Close GH-971: Quiet down deprecation warnings.
2014-02-06 17:15:01 -08:00
Steve Heffernan
2d5ca1ebc2
Adding line to CHANGELOG
2014-02-06 17:12:00 -08:00
Steve Heffernan
1b45195f9d
Close GH-981: Stopped component's dispose event from bubbling up.
2014-02-06 17:11:33 -08:00
Steve Heffernan
04c893208e
Added line to changelog
2014-02-06 17:01:49 -08:00
Steve Heffernan
453402a912
Added line to changelog
2014-02-06 17:01:23 -08:00
Steve Heffernan
849521ee66
Merge pull request #988 from golisandeep3/master
...
Fixed ARIA role attribute for button and slider
2014-02-06 17:00:33 -08:00
Steve Heffernan
ef1b239b2a
Removed unneeded option in tests
2014-02-06 16:58:25 -08:00
Steve Heffernan
4521c70173
Changed enableUserActivity to enableTouchActivity
...
Added back tracking of touch+hold
2014-02-06 16:54:35 -08:00
Gary Katsevman
28a4d29934
enable user activity on components by default
2014-02-06 17:04:58 -05:00
Gary Katsevman
9975ed407a
Don't enable enableUserActivity on an option
2014-02-06 15:59:57 -05:00
Gary Katsevman
75a23135e6
Report user activity on touchmove if userWasActive
2014-02-06 15:59:10 -05:00
Gary Katsevman
4d2267c1bc
use tap events. Report activity on touch move.
2014-02-06 15:40:20 -05:00
Gary Katsevman
44d6cac1b7
Test is for tap events and not user activity
2014-02-05 20:58:30 -05:00
Gary Katsevman
e5294848f9
Remove listenToTouchMove.
2014-02-05 20:50:39 -05:00
Gary Katsevman
26c8d3f92c
enableUserActivity on component
...
disableUserActivity on MediaTechController and Player.
MediaTechController does it manually.
2014-02-05 20:41:52 -05:00
Gary Katsevman
a7d624affe
stop immediate propagation on tap events
...
Make media tech controller only hide control bar.
2014-02-05 19:22:43 -05:00
Gary Katsevman
4b254a07df
remove unused var
2014-02-05 19:19:14 -05:00
Gary Katsevman
07cd9800e8
Fix touch events.
...
Make components listen to touch events themselves.
Components can have a "listenToTouchMove" property that would report
user activity on touch moves.
Currently, the only problem left is that the MediaTechController emits
tap events to show/hide the controlbar but that causes the control bar
to not be hidden via a tap.
2014-02-05 18:26:44 -05:00
Sandeep Goli
b23eba7c8c
Fixed ARIA role attribute for button and slider
2014-02-04 11:18:51 -05:00
Steve Heffernan
70ed4fcbb2
Updated changelog
2014-02-03 13:20:03 -08:00
Aalekh Nigam
d0f8b3e87e
Close GH-977: Inserts Fullscreen events .fixes #688 .
2014-02-03 13:17:47 -08:00
David LaPalomento
7184cb4b49
src() called as a getter should return the video src
...
It can be handy that src() returns the player object when it is invoked but it does not match the behavior of the corresponding property on the video element. Ignoring the spec however, while the video element is running the resource selection algorithm, currentSrc may be undefined. If the video source has been specified through an attribute on the video element, src() is the natural way to expose that URL programmatically. Without this change, it's necessary to bypass the player and interact with the tech directly to determine the value of the src attribute.
2014-01-25 23:16:35 -05:00
Steve Heffernan
c597605afd
Added line to the changelog
2014-01-23 17:50:23 -08:00
Steve Heffernan
d73bfb80b7
Merge branch 'windows-dist' of git://github.com/christophercurrie/video.js into christophercurrie-windows-dist
...
Conflicts:
package.json
2014-01-23 17:47:19 -08:00
Steve Heffernan
0dd210dcf3
Added line to changelog
2014-01-23 17:22:14 -08:00
Steve Heffernan
e25a9f3207
Merge branch 'seniorflexdeveloper-feature/grunt-swf'
2014-01-23 17:20:19 -08:00
Steve Heffernan
e4b4906198
Updated swf version and grunt file references
2014-01-23 17:15:41 -08:00
Steve Heffernan
4dd776c334
Added line to changelog
2014-01-23 16:46:24 -08:00
Steve Heffernan
a8afe9c673
Merge pull request #906 from heff/feature/more-exports
...
Added missing component exports
2014-01-23 16:45:27 -08:00
Steve Heffernan
6a1c0bdd0c
Added a line to the changelog
2014-01-23 16:42:48 -08:00
Steve Heffernan
65767f77f8
Merge pull request #948 from christophercurrie/karma-missing-util
...
Karma example is missing util
2014-01-23 16:40:54 -08:00
Steve Heffernan
f5acb89d70
Added a changelog item
2014-01-23 15:47:37 -08:00
Steve Heffernan
f152c6a4be
Changed video-js swf location
2014-01-23 15:44:52 -08:00
Steve Heffernan
cb78815e80
Merge pull request #962 from dmlap/bugfix/touch-detect-test
...
Fix touch detection test on non-touch devices
2014-01-23 15:43:06 -08:00