Browse Source

Update rlsnotes

pull/2169/head
jlukic 10 years ago
parent
commit
05bd4ee323
2 changed files with 6 additions and 3 deletions
  1. 2
      RELEASE-NOTES.md
  2. 7
      src/definitions/modules/tab.js

2
RELEASE-NOTES.md

@ -65,6 +65,7 @@
- **Segment** - Added `padded` and `very padded` segment variations
- **Sidebar** - Improved animation performance through performance debugging. Sidebar now caches, width, height, rtl direction on load.
- **Site** - Added in `pageOverflowX` variable, default theme hides horizontal scrollbars on `body`
- **Tabs* - Added `parseScripts` option
- **Table** - Added `vertical alignment` variations to `ui table`
- **Visibility/Sticky** - Visibility and sticky now refresh automatically after page content loading to deal with changes in position from images loading
- **Visibility/Sticky** - Visibility now uses pub/sub pattern to greatly improve scroll performance when attaching multiple events
@ -155,6 +156,7 @@
- **Menu** - Menus no longer have additional borders on `active item` in the default theme
- **Menu** - `tiered menu` has been removed
- **Menu** - Increased contrast on `inverted` menu selection for legibility
- **Modal** - Modals now used fixed widths and not percentage widths. Widths might be slightly different.
- **Message** - Slightly increases `box-shadow`
- **Popup** - Popup no longer produces an error when a position cannot be found on the page.
- **Segment** - **Clearfix** has been removed from `ui segment`

7
src/definitions/modules/tab.js

@ -783,11 +783,12 @@ $.fn.tab.settings = {
alwaysRefresh : false, // load tab content new every tab click
cache : true, // cache the content requests to pull locally
ignoreFirstLoad : false, // don't load remote content on first load
apiSettings : false, // settings for api call
evaluateScripts : 'once', // whether inline scripts should be parsed (true/false/once). Once will not re-evaluate on cached content
evaluateScripts : 'once', // whether inline scripts should be parsed (true/false/once). Once will not re-evaluate on cached content
onTabInit : function(tabPath, parameterArray, historyEvent) {}, // called first time loaded
onTabLoad : function(tabPath, parameterArray, historyEvent) {}, // called on every load
onTabInit : function(tabPath, parameterArray, historyEvent) {}, // called first time loaded
onTabLoad : function(tabPath, parameterArray, historyEvent) {}, // called on every load
templates : {
determineTitle: function(tabArray) {} // returns page title for path

Loading…
Cancel
Save