Skip to content

Commit f9f7429

Browse files
committed
Fixed bootstrap-confirmation issue
1 parent 068fd75 commit f9f7429

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "SpringRollStudio",
3-
"version": "0.2.8",
3+
"version": "0.2.9",
44
"private": true,
55
"dependencies": {
66
"jqueryui": "*",
77
"bootstrap": "~3.2.0",
88
"cloudkid-namespace": "*",
99
"requestAnimationFrame": "*",
10-
"bootstrap-confirmation": "https://github.com/tavicu/bootstrap-confirmation.git",
10+
"bootstrap-confirmation2": "*",
1111
"wavesurfer.js": "*",
1212
"underscore": "~1.7.0",
1313
"node-webkit-app": "*",

deploy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "SpringRollStudio",
33
"description": "Application for SpringRoll projects",
4-
"version": "0.2.8",
4+
"version": "0.2.9",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/SpringRoll/SpringRollStudio"

installer/win32.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# These three must be integers
55
!define VERSIONMAJOR 0
66
!define VERSIONMINOR 2
7-
!define VERSIONBUILD 8
7+
!define VERSIONBUILD 9
88
# These will be displayed by the "Click here for support information" link in "Add/Remove Programs"
99
# It is possible to use "mailto:" links in here to open the email client
1010
!define HELPURL "https://github.com/SpringRoll/SpringRollStudio/issues"

installer/win64.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# These three must be integers
55
!define VERSIONMAJOR 0
66
!define VERSIONMINOR 2
7-
!define VERSIONBUILD 8
7+
!define VERSIONBUILD 9
88
# These will be displayed by the "Click here for support information" link in "Add/Remove Programs"
99
# It is possible to use "mailto:" links in here to open the email client
1010
!define HELPURL "https://github.com/SpringRoll/SpringRollStudio/issues"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "SpringRollStudio",
33
"private": true,
4-
"version": "0.2.8",
4+
"version": "0.2.9",
55
"dependencies": {
66
"grunt": "^0.4.5",
77
"grunt-appdmg": "^0.3.1",

project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "SpringRollStudio",
3-
"version": "0.2.8",
3+
"version": "0.2.9",
44
"main": [
55
"components/node-webkit-app/src/utils/UpdateChecker.js",
66
"components/node-webkit-app/src/utils/Browser.js",
@@ -20,7 +20,7 @@
2020
"components/bootstrap/dist/js/bootstrap.min.js",
2121
"components/cloudkid-namespace/dist/namespace.min.js",
2222
"components/bootstrap/less/bootstrap.less",
23-
"components/bootstrap-confirmation/bootstrap-confirmation.js",
23+
"components/bootstrap-confirmation2/bootstrap-confirmation.js",
2424
"components/underscore/underscore.js",
2525
"components/wavesurfer.js/dist/wavesurfer.min.js",
2626
"components/sunlight/build/dist/sunlight-min.js",
@@ -37,7 +37,7 @@
3737
"components/bootstrap/dist/js/bootstrap.js",
3838
"components/cloudkid-namespace/dist/namespace.js",
3939
"components/bootstrap/less/bootstrap.less",
40-
"components/bootstrap-confirmation/bootstrap-confirmation.js",
40+
"components/bootstrap-confirmation2/bootstrap-confirmation.min.js",
4141
"components/underscore/underscore.js",
4242
"components/wavesurfer.js/dist/wavesurfer.min.js",
4343
"components/sunlight/build/dist/sunlight-min.js",

src/jade/captions.jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ html
4545
button#saveButton.btn.btn-lg.btn-success(type='button')
4646
span.glyphicon.glyphicon-ok
4747
.sub.col-xs-2.text-right
48-
button#deleteButton.btn.btn-lg.btn-danger(type='button', data-toggle='confirmation', data-placement='left', data-popout='true', data-singleton='true', data-title='Remove this caption?', data-container='body')
48+
button#deleteButton.btn.btn-lg.btn-danger(type='button', data-toggle='confirmation', data-btn-ok-class="btn-danger", data-btn-cancel-class="btn-default", data-placement='left', data-popout='true', data-singleton='true', data-title='Remove this caption?', data-container='body')
4949
span.glyphicon.glyphicon-trash
5050
ul#aliasMenu.dropdown-menu(role='menu')
5151
li(role='presentation')

0 commit comments

Comments
 (0)