Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
F
flot
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
HS-public
flot
Commits
8d8973ee
Commit
8d8973ee
authored
Feb 03, 2014
by
David Schnur
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1230 from nschonni/reorg-file-tree
Move JS files under src directory
parents
a3a14044
d37ce8e3
Hide whitespace changes
Inline
Side-by-side
Showing
45 changed files
with
53 additions
and
53 deletions
+53
-53
Gruntfile.js
Gruntfile.js
+2
-2
index.html
examples/ajax/index.html
+1
-1
index.html
examples/annotating/index.html
+1
-1
index.html
examples/axes-interacting/index.html
+1
-1
index.html
examples/axes-multiple/index.html
+2
-2
index.html
examples/axes-time-zones/index.html
+2
-2
index.html
examples/axes-time/index.html
+2
-2
index.html
examples/basic-options/index.html
+1
-1
index.html
examples/basic-usage/index.html
+1
-1
index.html
examples/canvas/index.html
+3
-3
index.html
examples/categories/index.html
+2
-2
index.html
examples/image/index.html
+2
-2
index.html
examples/index.html
+1
-1
index.html
examples/interacting/index.html
+1
-1
index.html
examples/markings/index.html
+2
-2
index.html
examples/navigate/index.html
+2
-2
index.html
examples/percentiles/index.html
+2
-2
index.html
examples/realtime/index.html
+1
-1
index.html
examples/resize/index.html
+2
-2
index.html
examples/selection/index.html
+2
-2
index.html
examples/series-errorbars/index.html
+3
-3
index.html
examples/series-pie/index.html
+2
-2
index.html
examples/series-toggle/index.html
+1
-1
index.html
examples/series-types/index.html
+1
-1
index.html
examples/stacking/index.html
+2
-2
index.html
examples/symbols/index.html
+2
-2
index.html
examples/threshold/index.html
+2
-2
index.html
examples/tracking/index.html
+2
-2
index.html
examples/visitors/index.html
+3
-3
index.html
examples/zooming/index.html
+2
-2
jquery.flot.js
src/jquery.flot.js
+0
-0
jquery.flot.canvas.js
src/plugins/jquery.flot.canvas.js
+0
-0
jquery.flot.categories.js
src/plugins/jquery.flot.categories.js
+0
-0
jquery.flot.crosshair.js
src/plugins/jquery.flot.crosshair.js
+0
-0
jquery.flot.errorbars.js
src/plugins/jquery.flot.errorbars.js
+0
-0
jquery.flot.fillbetween.js
src/plugins/jquery.flot.fillbetween.js
+0
-0
jquery.flot.image.js
src/plugins/jquery.flot.image.js
+0
-0
jquery.flot.navigate.js
src/plugins/jquery.flot.navigate.js
+0
-0
jquery.flot.pie.js
src/plugins/jquery.flot.pie.js
+0
-0
jquery.flot.resize.js
src/plugins/jquery.flot.resize.js
+0
-0
jquery.flot.selection.js
src/plugins/jquery.flot.selection.js
+0
-0
jquery.flot.stack.js
src/plugins/jquery.flot.stack.js
+0
-0
jquery.flot.symbol.js
src/plugins/jquery.flot.symbol.js
+0
-0
jquery.flot.threshold.js
src/plugins/jquery.flot.threshold.js
+0
-0
jquery.flot.time.js
src/plugins/jquery.flot.time.js
+0
-0
No files found.
Gruntfile.js
View file @
8d8973ee
...
...
@@ -16,7 +16,7 @@ module.exports = function(grunt) {
dist
:
{
expand
:
true
,
flatten
:
true
,
src
:
[
"
jquery.*.js"
,
"!jquery
.js"
],
src
:
[
"
src/**/*
.js"
],
dest
:
"dist/"
,
rename
:
function
(
base
,
path
)
{
return
base
+
path
.
replace
(
/
\.
js/
,
".min.js"
);
...
...
@@ -29,7 +29,7 @@ module.exports = function(grunt) {
src
:
"Gruntfile.js"
},
flot
:
{
src
:
[
"
jquery.flot
*.js"
]
src
:
[
"
src/**/
*.js"
]
}
},
watch
:
{
...
...
examples/ajax/index.html
View file @
8d8973ee
...
...
@@ -7,7 +7,7 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../lib/excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/annotating/index.html
View file @
8d8973ee
...
...
@@ -7,7 +7,7 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../lib/excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/axes-interacting/index.html
View file @
8d8973ee
...
...
@@ -7,7 +7,7 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../lib/excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/axes-multiple/index.html
View file @
8d8973ee
...
...
@@ -7,8 +7,8 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../lib/excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.time.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/plugins/
jquery.flot.time.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/axes-time-zones/index.html
View file @
8d8973ee
...
...
@@ -7,8 +7,8 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../lib/excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.time.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/plugins/
jquery.flot.time.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"date.js"
></script>
<script
type=
"text/javascript"
>
...
...
examples/axes-time/index.html
View file @
8d8973ee
...
...
@@ -7,8 +7,8 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../lib/excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.time.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/plugins/
jquery.flot.time.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/basic-options/index.html
View file @
8d8973ee
...
...
@@ -7,7 +7,7 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../lib/excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/basic-usage/index.html
View file @
8d8973ee
...
...
@@ -7,7 +7,7 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../lib/excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/canvas/index.html
View file @
8d8973ee
...
...
@@ -7,9 +7,9 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../lib/excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.time.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.canvas.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/plugins/
jquery.flot.time.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/plugins/
jquery.flot.canvas.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/categories/index.html
View file @
8d8973ee
...
...
@@ -7,8 +7,8 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../lib/excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.categories.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/plugins/
jquery.flot.categories.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/image/index.html
View file @
8d8973ee
...
...
@@ -7,8 +7,8 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../lib/excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.image.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/plugins/
jquery.flot.image.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/index.html
View file @
8d8973ee
...
...
@@ -13,7 +13,7 @@
</style>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../
src/
jquery.flot.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/interacting/index.html
View file @
8d8973ee
...
...
@@ -7,7 +7,7 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../lib/excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/markings/index.html
View file @
8d8973ee
...
...
@@ -7,8 +7,8 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.image.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/plugins/
jquery.flot.image.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/navigate/index.html
View file @
8d8973ee
...
...
@@ -26,8 +26,8 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../lib/excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.navigate.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/plugins/
jquery.flot.navigate.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/percentiles/index.html
View file @
8d8973ee
...
...
@@ -7,8 +7,8 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../lib/excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.fillbetween.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/plugins/
jquery.flot.fillbetween.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/realtime/index.html
View file @
8d8973ee
...
...
@@ -7,7 +7,7 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../lib/excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/resize/index.html
View file @
8d8973ee
...
...
@@ -9,8 +9,8 @@
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../shared/jquery-ui/jquery-ui.min.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.resize.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/plugins/
jquery.flot.resize.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/selection/index.html
View file @
8d8973ee
...
...
@@ -7,8 +7,8 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../lib/excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.selection.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/plugins/
jquery.flot.selection.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/series-errorbars/index.html
View file @
8d8973ee
...
...
@@ -7,9 +7,9 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../lib/excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.errorbars.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.navigate.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/plugins/
jquery.flot.errorbars.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/plugins/
jquery.flot.navigate.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/series-pie/index.html
View file @
8d8973ee
...
...
@@ -78,8 +78,8 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../lib/excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.pie.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/plugins/
jquery.flot.pie.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/series-toggle/index.html
View file @
8d8973ee
...
...
@@ -7,7 +7,7 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../lib/excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/series-types/index.html
View file @
8d8973ee
...
...
@@ -7,7 +7,7 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../lib/excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/stacking/index.html
View file @
8d8973ee
...
...
@@ -7,8 +7,8 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../lib/excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.stack.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/plugins/
jquery.flot.stack.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/symbols/index.html
View file @
8d8973ee
...
...
@@ -7,8 +7,8 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../lib/excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.symbol.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/plugins/
jquery.flot.symbol.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/threshold/index.html
View file @
8d8973ee
...
...
@@ -7,8 +7,8 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../lib/excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.threshold.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/plugins/
jquery.flot.threshold.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/tracking/index.html
View file @
8d8973ee
...
...
@@ -7,8 +7,8 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../lib/excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.crosshair.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/plugins/
jquery.flot.crosshair.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/visitors/index.html
View file @
8d8973ee
...
...
@@ -7,9 +7,9 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../lib/excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.time.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.selection.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/plugins/
jquery.flot.time.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/plugins/
jquery.flot.selection.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
examples/zooming/index.html
View file @
8d8973ee
...
...
@@ -7,8 +7,8 @@
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../../lib/excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../lib/jquery.colorhelpers.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../jquery.flot.selection.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/
jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../../
src/plugins/
jquery.flot.selection.js"
></script>
<script
type=
"text/javascript"
>
$
(
function
()
{
...
...
jquery.flot.js
→
src/
jquery.flot.js
View file @
8d8973ee
File moved
jquery.flot.canvas.js
→
src/plugins/
jquery.flot.canvas.js
View file @
8d8973ee
File moved
jquery.flot.categories.js
→
src/plugins/
jquery.flot.categories.js
View file @
8d8973ee
File moved
jquery.flot.crosshair.js
→
src/plugins/
jquery.flot.crosshair.js
View file @
8d8973ee
File moved
jquery.flot.errorbars.js
→
src/plugins/
jquery.flot.errorbars.js
View file @
8d8973ee
File moved
jquery.flot.fillbetween.js
→
src/plugins/
jquery.flot.fillbetween.js
View file @
8d8973ee
File moved
jquery.flot.image.js
→
src/plugins/
jquery.flot.image.js
View file @
8d8973ee
File moved
jquery.flot.navigate.js
→
src/plugins/
jquery.flot.navigate.js
View file @
8d8973ee
File moved
jquery.flot.pie.js
→
src/plugins/
jquery.flot.pie.js
View file @
8d8973ee
File moved
jquery.flot.resize.js
→
src/plugins/
jquery.flot.resize.js
View file @
8d8973ee
File moved
jquery.flot.selection.js
→
src/plugins/
jquery.flot.selection.js
View file @
8d8973ee
File moved
jquery.flot.stack.js
→
src/plugins/
jquery.flot.stack.js
View file @
8d8973ee
File moved
jquery.flot.symbol.js
→
src/plugins/
jquery.flot.symbol.js
View file @
8d8973ee
File moved
jquery.flot.threshold.js
→
src/plugins/
jquery.flot.threshold.js
View file @
8d8973ee
File moved
jquery.flot.time.js
→
src/plugins/
jquery.flot.time.js
View file @
8d8973ee
File moved
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