mirror of
https://github.com/silverstripe/silverstripe-docsviewer
synced 2024-10-22 09:05:56 +00:00
jQuery 3 compatibility. (#153)
jQuery 3 compatibility. Co-authored-by: Guy Marriott <guy@scopey.co.nz>
This commit is contained in:
commit
fc7c658b00
24
.travis.yml
24
.travis.yml
@ -1,24 +1,26 @@
|
|||||||
# See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details
|
# See https://github.com/silverstripe/silverstripe-travis-support for setup details
|
||||||
|
|
||||||
sudo: false
|
dist: trusty
|
||||||
|
|
||||||
language: php
|
language: php
|
||||||
|
|
||||||
php:
|
|
||||||
- 5.4
|
|
||||||
- 5.5
|
|
||||||
- 5.6
|
|
||||||
- 7.1
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
- DB=MYSQL CORE_RELEASE=3
|
- DB=MYSQL CORE_RELEASE=3.7
|
||||||
|
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- php: '7.1'
|
||||||
|
env: DB=MYSQL CORE_RELEASE=3.7
|
||||||
|
- php: '7.2'
|
||||||
|
env: DB=MYSQL CORE_RELEASE=3.7
|
||||||
|
- php: '7.3'
|
||||||
|
env: DB=MYSQL CORE_RELEASE=3.7
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- composer self-update || true
|
- composer self-update || true
|
||||||
- git clone git://github.com/silverstripe-labs/silverstripe-travis-support.git ~/travis-support
|
- git clone git://github.com/silverstripe/silverstripe-travis-support.git ~/travis-support
|
||||||
- php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss
|
- php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss
|
||||||
- cd ~/builds/ss
|
- cd ~/builds/ss
|
||||||
- composer install
|
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- vendor/bin/phpunit docsviewer/tests
|
- vendor/bin/phpunit docsviewer/tests
|
||||||
|
@ -55,7 +55,7 @@
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
$(window).load(updateTables);
|
$(window).on('load', updateTables);
|
||||||
$(window).on(
|
$(window).on(
|
||||||
"redraw",function() {
|
"redraw",function() {
|
||||||
switched = false;
|
switched = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user