Browse Source

updating the header on all the js lib files

pull/526/head
connors 11 years ago
parent
commit
61787e5259
  1. 11
      Gruntfile.js
  2. 2
      dist/css/ratchet-theme-android.css
  3. 2
      dist/css/ratchet-theme-android.min.css
  4. 2
      dist/css/ratchet-theme-ios.css
  5. 2
      dist/css/ratchet-theme-ios.min.css
  6. 2
      dist/css/ratchet.css
  7. 2
      dist/css/ratchet.min.css
  8. 79
      dist/js/ratchet.js
  9. 2
      dist/js/ratchet.min.js
  10. 2
      docs/assets/css/docs.css
  11. 2
      docs/assets/css/docs.min.css
  12. 2
      docs/assets/js/docs.min.js
  13. 2
      docs/dist/css/ratchet-theme-android.css
  14. 2
      docs/dist/css/ratchet-theme-android.min.css
  15. 2
      docs/dist/css/ratchet-theme-ios.css
  16. 2
      docs/dist/css/ratchet-theme-ios.min.css
  17. 2
      docs/dist/css/ratchet.css
  18. 2
      docs/dist/css/ratchet.min.css
  19. 79
      docs/dist/js/ratchet.js
  20. 2
      docs/dist/js/ratchet.min.js
  21. 12
      js/modals.js
  22. 12
      js/popovers.js
  23. 14
      js/push.js
  24. 12
      js/segmented-controllers.js
  25. 14
      js/sliders.js
  26. 13
      js/toggles.js

11
Gruntfile.js

@ -1,8 +1,9 @@
/* ----------------------------------
/*!
* Ratchet's Gruntfile
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ---------------------------------- */
* http://goratchet.com
* Copyright 2014 Connor Sears
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
*/
/* jshint node: true */
module.exports = function(grunt) {
@ -32,7 +33,7 @@ module.exports = function(grunt) {
' * =====================================================\n' +
' * Ratchet v<%= pkg.version %> (<%= pkg.homepage %>)\n' +
' * Copyright <%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' +
' * Licensed under <%= pkg.license %>.\n' +
' * Licensed under <%= pkg.license %> (https://github.com/twbs/ratchet/blob/master/LICENSE)\n' +
' *\n' +
' * v<%= pkg.version %> designed by @connors.\n' +
' * =====================================================\n' +

2
dist/css/ratchet-theme-android.css vendored

@ -2,7 +2,7 @@
* =====================================================
* Ratchet v2.0.1 (http://goratchet.com)
* Copyright 2014 Connor Sears
* Licensed under MIT.
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
*
* v2.0.1 designed by @connors.
* =====================================================

2
dist/css/ratchet-theme-android.min.css vendored

@ -2,7 +2,7 @@
* =====================================================
* Ratchet v2.0.1 (http://goratchet.com)
* Copyright 2014 Connor Sears
* Licensed under MIT.
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
*
* v2.0.1 designed by @connors.
* =====================================================

2
dist/css/ratchet-theme-ios.css vendored

@ -2,7 +2,7 @@
* =====================================================
* Ratchet v2.0.1 (http://goratchet.com)
* Copyright 2014 Connor Sears
* Licensed under MIT.
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
*
* v2.0.1 designed by @connors.
* =====================================================

2
dist/css/ratchet-theme-ios.min.css vendored

@ -2,7 +2,7 @@
* =====================================================
* Ratchet v2.0.1 (http://goratchet.com)
* Copyright 2014 Connor Sears
* Licensed under MIT.
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
*
* v2.0.1 designed by @connors.
* =====================================================

2
dist/css/ratchet.css vendored

@ -2,7 +2,7 @@
* =====================================================
* Ratchet v2.0.1 (http://goratchet.com)
* Copyright 2014 Connor Sears
* Licensed under MIT.
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
*
* v2.0.1 designed by @connors.
* =====================================================

2
dist/css/ratchet.min.css vendored

@ -2,7 +2,7 @@
* =====================================================
* Ratchet v2.0.1 (http://goratchet.com)
* Copyright 2014 Connor Sears
* Licensed under MIT.
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
*
* v2.0.1 designed by @connors.
* =====================================================

79
dist/js/ratchet.js vendored

@ -2,16 +2,18 @@
* =====================================================
* Ratchet v2.0.1 (http://goratchet.com)
* Copyright 2014 Connor Sears
* Licensed under MIT.
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
*
* v2.0.1 designed by @connors.
* =====================================================
*/
/* ----------------------------------
* MODAL v2.0.1
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ---------------------------------- */
/* ========================================================================
* Ratchet: modals.js v2.0.1
* http://goratchet.com/components#modals
* ========================================================================
* Copyright 2014 Connor Sears
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
* ======================================================================== */
!(function () {
'use strict';
@ -47,11 +49,13 @@
});
}());
/* ----------------------------------
* POPOVER v2.0.1
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ---------------------------------- */
/* ========================================================================
* Ratchet: popovers.js v2.0.1
* http://goratchet.com/components#popovers
* ========================================================================
* Copyright 2014 Connor Sears
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
* ======================================================================== */
!(function () {
'use strict';
@ -133,12 +137,14 @@
}());
/* ----------------------------------
* PUSH v2.0.1
* Licensed under The MIT License
* inspired by chris's jquery.pjax.js
* http://opensource.org/licenses/MIT
* ---------------------------------- */
/* ========================================================================
* Ratchet: push.js v2.0.1
* http://goratchet.com/components#push
* ========================================================================
* inspired by @defunkt's jquery.pjax.js
* Copyright 2014 Connor Sears
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
* ======================================================================== */
/* global _gaq: true */
@ -614,11 +620,13 @@
}());
/* ----------------------------------
* Segmented controls v2.0.1
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ---------------------------------- */
/* ========================================================================
* Ratchet: segmented-controllers.js v2.0.1
* http://goratchet.com/components#segmentedControls
* ========================================================================
* Copyright 2014 Connor Sears
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
* ======================================================================== */
!(function () {
'use strict';
@ -678,12 +686,14 @@
window.addEventListener('click', function (e) { if (getTarget(e.target)) {e.preventDefault();} });
}());
/* ----------------------------------
* SLIDER v2.0.1
* Licensed under The MIT License
* Adapted from Brad Birdsall's swipe
* http://opensource.org/licenses/MIT
* ---------------------------------- */
/* ========================================================================
* Ratchet: sliders.js v2.0.1
* http://goratchet.com/components#sliders
* ========================================================================
Adapted from Brad Birdsall's swipe
* Copyright 2014 Connor Sears
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
* ======================================================================== */
!(function () {
'use strict';
@ -813,11 +823,14 @@
}());
/* ----------------------------------
* TOGGLE v2.0.1
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ---------------------------------- */
/* ========================================================================
* Ratchet: toggles.js v2.0.1
* http://goratchet.com/components#toggles
* ========================================================================
Adapted from Brad Birdsall's swipe
* Copyright 2014 Connor Sears
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
* ======================================================================== */
!(function () {
'use strict';

2
dist/js/ratchet.min.js vendored

@ -2,7 +2,7 @@
* =====================================================
* Ratchet v2.0.1 (http://goratchet.com)
* Copyright 2014 Connor Sears
* Licensed under MIT.
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
*
* v2.0.1 designed by @connors.
* =====================================================

2
docs/assets/css/docs.css

@ -2,7 +2,7 @@
* =====================================================
* Ratchet v2.0.1 (http://goratchet.com)
* Copyright 2014 Connor Sears
* Licensed under MIT.
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
*
* v2.0.1 designed by @connors.
* =====================================================

2
docs/assets/css/docs.min.css vendored

@ -2,7 +2,7 @@
* =====================================================
* Ratchet v2.0.1 (http://goratchet.com)
* Copyright 2014 Connor Sears
* Licensed under MIT.
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
*
* v2.0.1 designed by @connors.
* =====================================================

2
docs/assets/js/docs.min.js vendored

@ -2,7 +2,7 @@
* =====================================================
* Ratchet v2.0.1 (http://goratchet.com)
* Copyright 2014 Connor Sears
* Licensed under MIT.
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
*
* v2.0.1 designed by @connors.
* =====================================================

2
docs/dist/css/ratchet-theme-android.css vendored

@ -2,7 +2,7 @@
* =====================================================
* Ratchet v2.0.1 (http://goratchet.com)
* Copyright 2014 Connor Sears
* Licensed under MIT.
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
*
* v2.0.1 designed by @connors.
* =====================================================

2
docs/dist/css/ratchet-theme-android.min.css vendored

@ -2,7 +2,7 @@
* =====================================================
* Ratchet v2.0.1 (http://goratchet.com)
* Copyright 2014 Connor Sears
* Licensed under MIT.
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
*
* v2.0.1 designed by @connors.
* =====================================================

2
docs/dist/css/ratchet-theme-ios.css vendored

@ -2,7 +2,7 @@
* =====================================================
* Ratchet v2.0.1 (http://goratchet.com)
* Copyright 2014 Connor Sears
* Licensed under MIT.
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
*
* v2.0.1 designed by @connors.
* =====================================================

2
docs/dist/css/ratchet-theme-ios.min.css vendored

@ -2,7 +2,7 @@
* =====================================================
* Ratchet v2.0.1 (http://goratchet.com)
* Copyright 2014 Connor Sears
* Licensed under MIT.
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
*
* v2.0.1 designed by @connors.
* =====================================================

2
docs/dist/css/ratchet.css vendored

@ -2,7 +2,7 @@
* =====================================================
* Ratchet v2.0.1 (http://goratchet.com)
* Copyright 2014 Connor Sears
* Licensed under MIT.
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
*
* v2.0.1 designed by @connors.
* =====================================================

2
docs/dist/css/ratchet.min.css vendored

@ -2,7 +2,7 @@
* =====================================================
* Ratchet v2.0.1 (http://goratchet.com)
* Copyright 2014 Connor Sears
* Licensed under MIT.
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
*
* v2.0.1 designed by @connors.
* =====================================================

79
docs/dist/js/ratchet.js vendored

@ -2,16 +2,18 @@
* =====================================================
* Ratchet v2.0.1 (http://goratchet.com)
* Copyright 2014 Connor Sears
* Licensed under MIT.
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
*
* v2.0.1 designed by @connors.
* =====================================================
*/
/* ----------------------------------
* MODAL v2.0.1
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ---------------------------------- */
/* ========================================================================
* Ratchet: modals.js v2.0.1
* http://goratchet.com/components#modals
* ========================================================================
* Copyright 2014 Connor Sears
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
* ======================================================================== */
!(function () {
'use strict';
@ -47,11 +49,13 @@
});
}());
/* ----------------------------------
* POPOVER v2.0.1
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ---------------------------------- */
/* ========================================================================
* Ratchet: popovers.js v2.0.1
* http://goratchet.com/components#popovers
* ========================================================================
* Copyright 2014 Connor Sears
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
* ======================================================================== */
!(function () {
'use strict';
@ -133,12 +137,14 @@
}());
/* ----------------------------------
* PUSH v2.0.1
* Licensed under The MIT License
* inspired by chris's jquery.pjax.js
* http://opensource.org/licenses/MIT
* ---------------------------------- */
/* ========================================================================
* Ratchet: push.js v2.0.1
* http://goratchet.com/components#push
* ========================================================================
* inspired by @defunkt's jquery.pjax.js
* Copyright 2014 Connor Sears
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
* ======================================================================== */
/* global _gaq: true */
@ -614,11 +620,13 @@
}());
/* ----------------------------------
* Segmented controls v2.0.1
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ---------------------------------- */
/* ========================================================================
* Ratchet: segmented-controllers.js v2.0.1
* http://goratchet.com/components#segmentedControls
* ========================================================================
* Copyright 2014 Connor Sears
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
* ======================================================================== */
!(function () {
'use strict';
@ -678,12 +686,14 @@
window.addEventListener('click', function (e) { if (getTarget(e.target)) {e.preventDefault();} });
}());
/* ----------------------------------
* SLIDER v2.0.1
* Licensed under The MIT License
* Adapted from Brad Birdsall's swipe
* http://opensource.org/licenses/MIT
* ---------------------------------- */
/* ========================================================================
* Ratchet: sliders.js v2.0.1
* http://goratchet.com/components#sliders
* ========================================================================
Adapted from Brad Birdsall's swipe
* Copyright 2014 Connor Sears
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
* ======================================================================== */
!(function () {
'use strict';
@ -813,11 +823,14 @@
}());
/* ----------------------------------
* TOGGLE v2.0.1
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ---------------------------------- */
/* ========================================================================
* Ratchet: toggles.js v2.0.1
* http://goratchet.com/components#toggles
* ========================================================================
Adapted from Brad Birdsall's swipe
* Copyright 2014 Connor Sears
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
* ======================================================================== */
!(function () {
'use strict';

2
docs/dist/js/ratchet.min.js vendored

@ -2,7 +2,7 @@
* =====================================================
* Ratchet v2.0.1 (http://goratchet.com)
* Copyright 2014 Connor Sears
* Licensed under MIT.
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
*
* v2.0.1 designed by @connors.
* =====================================================

12
js/modals.js

@ -1,8 +1,10 @@
/* ----------------------------------
* MODAL v2.0.1
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ---------------------------------- */
/* ========================================================================
* Ratchet: modals.js v2.0.1
* http://goratchet.com/components#modals
* ========================================================================
* Copyright 2014 Connor Sears
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
* ======================================================================== */
!(function () {
'use strict';

12
js/popovers.js

@ -1,8 +1,10 @@
/* ----------------------------------
* POPOVER v2.0.1
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ---------------------------------- */
/* ========================================================================
* Ratchet: popovers.js v2.0.1
* http://goratchet.com/components#popovers
* ========================================================================
* Copyright 2014 Connor Sears
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
* ======================================================================== */
!(function () {
'use strict';

14
js/push.js

@ -1,9 +1,11 @@
/* ----------------------------------
* PUSH v2.0.1
* Licensed under The MIT License
* inspired by chris's jquery.pjax.js
* http://opensource.org/licenses/MIT
* ---------------------------------- */
/* ========================================================================
* Ratchet: push.js v2.0.1
* http://goratchet.com/components#push
* ========================================================================
* inspired by @defunkt's jquery.pjax.js
* Copyright 2014 Connor Sears
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
* ======================================================================== */
/* global _gaq: true */

12
js/segmented-controllers.js

@ -1,8 +1,10 @@
/* ----------------------------------
* Segmented controls v2.0.1
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ---------------------------------- */
/* ========================================================================
* Ratchet: segmented-controllers.js v2.0.1
* http://goratchet.com/components#segmentedControls
* ========================================================================
* Copyright 2014 Connor Sears
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
* ======================================================================== */
!(function () {
'use strict';

14
js/sliders.js

@ -1,9 +1,11 @@
/* ----------------------------------
* SLIDER v2.0.1
* Licensed under The MIT License
* Adapted from Brad Birdsall's swipe
* http://opensource.org/licenses/MIT
* ---------------------------------- */
/* ========================================================================
* Ratchet: sliders.js v2.0.1
* http://goratchet.com/components#sliders
* ========================================================================
Adapted from Brad Birdsall's swipe
* Copyright 2014 Connor Sears
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
* ======================================================================== */
!(function () {
'use strict';

13
js/toggles.js

@ -1,8 +1,11 @@
/* ----------------------------------
* TOGGLE v2.0.1
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ---------------------------------- */
/* ========================================================================
* Ratchet: toggles.js v2.0.1
* http://goratchet.com/components#toggles
* ========================================================================
Adapted from Brad Birdsall's swipe
* Copyright 2014 Connor Sears
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
* ======================================================================== */
!(function () {
'use strict';

Loading…
Cancel
Save