Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
874503ca
Commit
874503ca
authored
Aug 26, 2015
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(ngblur): removed ngblur directive as it conflicted with angular naitive directive, fixes #2429
parent
29c833d6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
22 deletions
+0
-22
public/app/directives/all.js
+0
-1
public/app/directives/ngBlur.js
+0
-21
No files found.
public/app/directives/all.js
View file @
874503ca
...
...
@@ -2,7 +2,6 @@ define([
'./arrayJoin'
,
'./dashUpload'
,
'./grafanaSimplePanel'
,
'./ngBlur'
,
'./dashEditLink'
,
'./ngModelOnBlur'
,
'./misc'
,
...
...
public/app/directives/ngBlur.js
deleted
100644 → 0
View file @
29c833d6
define
([
'angular'
],
function
(
angular
)
{
'use strict'
;
angular
.
module
(
'grafana.directives'
)
.
directive
(
'ngBlur'
,
[
'$parse'
,
function
(
$parse
)
{
return
function
(
scope
,
element
,
attr
)
{
var
fn
=
$parse
(
attr
[
'ngBlur'
]);
element
.
bind
(
'blur'
,
function
(
event
)
{
scope
.
$apply
(
function
()
{
fn
(
scope
,
{
$event
:
event
});
});
});
};
}]);
});
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment