From 842bdb43e24c6cc09b548a2a7ad8dc9a6cf322e9 Mon Sep 17 00:00:00 2001 From: Prasun Anand Date: Mon, 16 Mar 2015 03:19:37 +0530 Subject: [PATCH 1/3] Performace:Kendo-ui buttons added --- performance/frameworks/kendo-ui.js | 33 ++++++++++++++++++++++++++++++ tasks/options/perfjankie.js | 4 +++- 2 files changed, 36 insertions(+), 1 deletion(-) create mode 100644 performance/frameworks/kendo-ui.js 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..29c9955 100644 --- a/tasks/options/perfjankie.js +++ b/tasks/options/perfjankie.js @@ -36,7 +36,9 @@ 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" ] } } From 8517aa2f49ab2dfa40d5eafaea5ac9e392717577 Mon Sep 17 00:00:00 2001 From: Prasun Anand Date: Mon, 16 Mar 2015 04:25:17 +0530 Subject: [PATCH 2/3] Performance: Added kendo-ui-mobile test --- performance/frameworks/kendo-ui-mobile.js | 34 +++++++++++++++++++++++ tasks/options/perfjankie.js | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 performance/frameworks/kendo-ui-mobile.js 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/tasks/options/perfjankie.js b/tasks/options/perfjankie.js index 29c9955..c5bbd7f 100644 --- a/tasks/options/perfjankie.js +++ b/tasks/options/perfjankie.js @@ -37,6 +37,8 @@ module.exports = { "semantic-ui:button", "http://localhost:4200/framework/dojo/component/button/count/1000/" + "dojo:button", + "http://localhost:4200/framework/kendo-ui/component/button/count/1000/" + + "kendo-ui:button", "http://localhost:4200/framework/kendo-ui/component/button/count/1000/" + "kendo-ui:button" ] From 1af7ab4ea307331c0fe67f6f5236b49a51d5b893 Mon Sep 17 00:00:00 2001 From: Prasun Anand Date: Mon, 16 Mar 2015 04:34:03 +0530 Subject: [PATCH 3/3] Performance: Added kendo-ui-mobile test --- tasks/options/perfjankie.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/options/perfjankie.js b/tasks/options/perfjankie.js index c5bbd7f..e0e4ee0 100644 --- a/tasks/options/perfjankie.js +++ b/tasks/options/perfjankie.js @@ -39,8 +39,8 @@ module.exports = { "dojo:button", "http://localhost:4200/framework/kendo-ui/component/button/count/1000/" + "kendo-ui: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" ] } }