File tree Expand file tree Collapse file tree 2 files changed +13
-4
lines changed
Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -430,9 +430,18 @@ var link = (function(){
430430edit ( data ) ;
431431} , false ) ;
432432linkRemove . addEventListener ( "click" , function ( ) {
433- remove ( data ) ;
434- control . dependents ( ) ;
435- control . render ( ) ;
433+ modal . render ( {
434+ heading : "Remove " + data . name + " bookmark" ,
435+ content : "Are you sure you want to remove this bookmark? This can not be undone." ,
436+ successAction : function ( ) {
437+ remove ( data ) ;
438+ control . dependents ( ) ;
439+ control . render ( ) ;
440+ } ,
441+ actionText : "Remove" ,
442+ cancelText : "Cancel" ,
443+ size : "small"
444+ } ) ;
436445} , false ) ;
437446
438447return linkItem ;
Original file line number Diff line number Diff line change 11var version = ( function ( ) {
22
33// version is normally bumped when the state needs changing or any new functionality is added
4- var current = "3.4 .0" ;
4+ var current = "3.5 .0" ;
55
66var compare = function ( a , b ) {
77var pa = a . split ( "." ) ;
You can’t perform that action at this time.
0 commit comments