Browse Source

Merge pull request #106 from thx2001r/patch-3

Added cache option for AJAX calls to Documentation
文翼 11 years ago
parent
commit
d45e41a0db
1 changed files with 10 additions and 1 deletions
  1. 10 1
      docs/docs.js

+ 10 - 1
docs/docs.js

@@ -169,6 +169,15 @@ $(function () {
                     example: 'basic-table'
                 },
                 {
+                    name: 'cache',
+                    attribute: 'data-cache',
+                    type: 'Boolean',
+                    description: 'False to disable caching of AJAX requests.',
+                    description_zh: '',
+                    'default': 'true',
+                    example: 'basic-table'
+                },
+                {
                     name: 'contentType',
                     attribute: 'data-content-type',
                     type: 'String',
@@ -705,4 +714,4 @@ $(function () {
 
     $(window).on('resize', initTables);
     initTables();
-});
+});