UNPKG

typescript-closure-tools

Version:

Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files

45 lines (30 loc) 1.02 kB
/// <reference path="../jquery/jquery.d.ts" /> /// <reference path="bootstrap.d.ts" /> $('body').off('.data-api'); $('body').off('.alert.data-api'); $(".btn.danger").button("toggle").addClass("fat"); $("#myModal").modal(); $("#myModal").modal({ keyboard: false }); $("#myModal").modal('show'); $('#myModal').on('show', (e) => e.preventDefault()); $('#myModal').modal({ keyboard: false }); $('#myModal').modal('toggle'); $('.dropdown-toggle').dropdown(); $('#navbar').scrollspy(); $('#element').tooltip('show'); $('#element').popover('show'); $(".alert").alert(); $(".alert").alert('close'); $('.nav-tabs').button(); $().button('toggle'); $(".collapse").collapse(); $('#myCollapsible').collapse({ toggle: false }); $('.carousel').carousel(); $('.carousel').carousel({ interval: 2000 }); $('.typeahead').typeahead({ matcher: item => true, sorter: (items: any[]) => items, updater: item => item, highlighter: item => "" }); $('#navbar').affix();