diff --git a/performance/frameworks/kendo-ui-mobile.js b/performance/frameworks/kendo-ui-mobile.js
new file mode 100644
index 0000000..00d5713
--- /dev/null
+++ b/performance/frameworks/kendo-ui-mobile.js
@@ -0,0 +1,34 @@
+module.exports = {
+ css: [ "//cdn.kendostatic.com/2014.1.318/styles/kendo.common.min.css",
+ "//cdn.kendostatic.com/2014.1.318/styles/kendo.default.min.css",
+ "//cdn.kendostatic.com/2014.1.318/styles/kendo.dataviz.min.css",
+ "//cdn.kendostatic.com/2014.1.318/styles/kendo.dataviz.default.min.css",
+ "//cdn.kendostatic.com/2012.1.318/styles/kendo.mobile.all.min.css"
+ ],
+ button: {
+ generator: function( options ) {
+ var button = "";
+ },
+ variations: {
+ state: [
+ "",
+ "k-primary"
+ ],
+ disabled: [
+ "",
+ "k-state-disabled"
+ ],
+ icon: [
+ false,
+ "k-i-funnel",
+ "k-i-funnel-clear",
+ "k-i-refresh"
+ ]
+ }
+ }
+};
diff --git a/performance/frameworks/kendo-ui.js b/performance/frameworks/kendo-ui.js
new file mode 100644
index 0000000..4f0d802
--- /dev/null
+++ b/performance/frameworks/kendo-ui.js
@@ -0,0 +1,33 @@
+module.exports = {
+ css: [ "//cdn.kendostatic.com/2014.1.318/styles/kendo.common.min.css",
+ "//cdn.kendostatic.com/2014.1.318/styles/kendo.default.min.css",
+ "//cdn.kendostatic.com/2014.1.318/styles/kendo.dataviz.min.css",
+ "//cdn.kendostatic.com/2014.1.318/styles/kendo.dataviz.default.min.css"
+ ],
+ button: {
+ generator: function( options ) {
+ var button = "";
+ },
+ variations: {
+ state: [
+ "",
+ "k-primary"
+ ],
+ disabled: [
+ "",
+ "k-state-disabled"
+ ],
+ icon: [
+ false,
+ "k-i-funnel",
+ "k-i-funnel-clear",
+ "k-i-refresh"
+ ]
+ }
+ }
+};
diff --git a/tasks/options/perfjankie.js b/tasks/options/perfjankie.js
index 6f44de5..e0e4ee0 100644
--- a/tasks/options/perfjankie.js
+++ b/tasks/options/perfjankie.js
@@ -36,7 +36,11 @@ module.exports = {
"http://localhost:4200/framework/semantic-ui/component/button/count/1000/" +
"semantic-ui:button",
"http://localhost:4200/framework/dojo/component/button/count/1000/" +
- "dojo:button"
+ "dojo:button",
+ "http://localhost:4200/framework/kendo-ui/component/button/count/1000/" +
+ "kendo-ui:button",
+ "http://localhost:4200/framework/kendo-ui-mobile/component/button/count/1000/" +
+ "kendo-ui-mobile:button"
]
}
}