bootstrapx-clickover icon indicating copy to clipboard operation
bootstrapx-clickover copied to clipboard

Bootstrap Extension for Click managed popovers

Results 31 bootstrapx-clickover issues
Sort by recently updated
recently updated
newest added

If you put tip_id as an option, the this.options.tip_id is correct, but by the tip the popover renders, the tip_id is randomly generated. Thus -- it isn't possible to set...

Hello $("[rel='clickover']").clickover(); When i click close button on popup, it closed and then open fast and then close popup. any help me? thanks

auto close works, but not the click outside clickover. Previous patches I've read here don't apply to 3.0.1 bootstrap code.

Not sure how to do a pull request from my fork, but here is the commit with the new feature: https://github.com/borisreitman/bootstrapx-clickover/commit/8bade10dfb4ab87df530f11e4ff7ecc34aff4c01

Here's a sample. ``` function test_close(){ $('#mybutton1').clickover('hide'); } function test_show(){ $('#mybutton1').data().clickover.show(); //$('#mybutton1').clickover('show'); } $(function() { $('#mybutton1').clickover(); }) hide show dummy ``` Click the button "show", the popup appears correctly. However,...

Currently the click eventhandler is added without an namespace, therefore destroy() doesn't work because bootstrap popover removes the events with this.type as namespace destroy: function () { this.hide().$element.off('.' + this.type).removeData(this.type)...

Hi i have made a couple of changes to allow for better inheritance . (around the namespacing of the events) I have also added callbacks for the show and hide...

Fixes lecar-red/bootstrapx-clickover#28

I have made some fixes to make this support bootstrap 3 (Specifically 3.1.1). It will no longer work with bootstrap 2. Please review.