summaryrefslogtreecommitdiff
path: root/lib/dijit/MenuSeparator.js.uncompressed.js
diff options
context:
space:
mode:
authorBarak Korren <[email protected]>2013-04-02 20:38:07 +0300
committerBarak Korren <[email protected]>2013-04-02 20:38:07 +0300
commit58a2577d48790c79adfd44bcfd662c980ce6cfe4 (patch)
tree523d814ea0b7b6f617fe515b186099c6e83fed72 /lib/dijit/MenuSeparator.js.uncompressed.js
parente470a273cf09562fb2f9c0c899002303f19c8d16 (diff)
parentcc332603431102a682feda22b9cf0093a29f0176 (diff)
Merge branch 'master' of https://github.com/gothfox/Tiny-Tiny-RSS.git
Diffstat (limited to 'lib/dijit/MenuSeparator.js.uncompressed.js')
-rw-r--r--lib/dijit/MenuSeparator.js.uncompressed.js35
1 files changed, 0 insertions, 35 deletions
diff --git a/lib/dijit/MenuSeparator.js.uncompressed.js b/lib/dijit/MenuSeparator.js.uncompressed.js
deleted file mode 100644
index 8e7bf8405..000000000
--- a/lib/dijit/MenuSeparator.js.uncompressed.js
+++ /dev/null
@@ -1,35 +0,0 @@
-require({cache:{
-'url:dijit/templates/MenuSeparator.html':"<tr class=\"dijitMenuSeparator\">\n\t<td class=\"dijitMenuSeparatorIconCell\">\n\t\t<div class=\"dijitMenuSeparatorTop\"></div>\n\t\t<div class=\"dijitMenuSeparatorBottom\"></div>\n\t</td>\n\t<td colspan=\"3\" class=\"dijitMenuSeparatorLabelCell\">\n\t\t<div class=\"dijitMenuSeparatorTop dijitMenuSeparatorLabel\"></div>\n\t\t<div class=\"dijitMenuSeparatorBottom\"></div>\n\t</td>\n</tr>"}});
-define("dijit/MenuSeparator", [
- "dojo/_base/declare", // declare
- "dojo/dom", // dom.setSelectable
- "./_WidgetBase",
- "./_TemplatedMixin",
- "./_Contained",
- "dojo/text!./templates/MenuSeparator.html"
-], function(declare, dom, _WidgetBase, _TemplatedMixin, _Contained, template){
-
- // module:
- // dijit/MenuSeparator
-
- return declare("dijit.MenuSeparator", [_WidgetBase, _TemplatedMixin, _Contained], {
- // summary:
- // A line between two menu items
-
- templateString: template,
-
- buildRendering: function(){
- this.inherited(arguments);
- dom.setSelectable(this.domNode, false);
- },
-
- isFocusable: function(){
- // summary:
- // Override to always return false
- // tags:
- // protected
-
- return false; // Boolean
- }
- });
-});