diff --git a/angular-datepicker-light.js b/angular-datepicker-light.js index 104b52c..89a0633 100644 --- a/angular-datepicker-light.js +++ b/angular-datepicker-light.js @@ -1259,15 +1259,15 @@ }, hideTodayDate: { def: "false", - doc: "Hides bottom panel from calender display. Which is used to display today date." + doc: "If true, hides bottom panel(containing today's date) from calender display." }, prevYers: { def: "5", - doc: "Sets number of previous years(from current year) to display in year drop-down. NOTE if minDate is defined, this will be ignored in min date's favor." + doc: "Sets number of previous years(from current year) to display in year drop-down. NOTE if minDate is defined, this will be ignored in minDate's favor." }, nextYears: { def: "5", - doc: "Sets number of next years(from current year) to display in year drop-down. NOTE if maxDate is defined, this will be ignored in min date's favor" + doc: "Sets number of next years(from current year) to display in year drop-down. NOTE if maxDate is defined, this will be ignored in maxDate's favor" } }; diff --git a/bower.json b/bower.json index e9909f7..5ce50bf 100644 --- a/bower.json +++ b/bower.json @@ -2,7 +2,7 @@ "name": "angular-datepicker-light", "version": "1.2.1", "description": "AngularJS datepicker plugin", - "main": "angular-datepicker-light.js", + "main": ["angular-datepicker-light.js", "./stylesheets/angular-datepicker-light.css"], "homepage": "http://www.vickram.me/angular-datepicker-light-plugin/", "authors": [ "Vickram Ravichandran (http://vickram.me)" diff --git a/package.json b/package.json index f6ca46c..5356ee8 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "angular-datepicker-light", "version": "1.2.1", "description": "AngularJS datepicker plugin", - "main": "angular-datepicker-light.js", + "main": ["angular-datepicker-light.js", "./stylesheets/angular-datepicker-light.css"], "homepage": "http://www.vickram.me/angular-datepicker-light-plugin/", "author": "Vickram Ravichandran (http://vickram.me)", "license": "MIT", diff --git a/stylesheets/angular-datepicker-light.css b/stylesheets/angular-datepicker-light.css index 6758946..c4ce417 100644 --- a/stylesheets/angular-datepicker-light.css +++ b/stylesheets/angular-datepicker-light.css @@ -54,12 +54,12 @@ div.datepicker-container > div.top-panel { } div.datepicker-container > div.top-panel a.prev { - background-image: image-url("angular-datepicker-light/stylesheets/images/chevron-left.png"); + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQCAYAAAAiYZ4HAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEwAACxMBAJqcGAAAAFJJREFUKJHlzbERQEAQQNE3GhDQCTO0fh0IUQkVnOhk5xBIbLj73yzXUyNgLHRnPCFiR383jpjR/DaucofSPPqSQ8tb1H6C1qdoQ1cCCQUMaXEAyUEw5kLhpCcAAAAASUVORK5CYII=); } div.datepicker-container > div.top-panel a.next { margin-left: 15px; - background-image: image-url("angular-datepicker-light/stylesheets/images/chevron-right.png"); + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQCAYAAAAiYZ4HAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEwAACxMBAJqcGAAAAFBJREFUKJHt0LsNgEAMBNEH1ManKISgNCgKyCA44pOds5KzGWu1lGxYBbPg+S4k9Th/qSK1FamJfIYBV7RSCh4z8JSF7ygMcwbucCgT7hHhBW/dMgUFnWL2AAAAAElFTkSuQmCC); } div.datepicker-container > div.top-panel select { diff --git a/stylesheets/images/chevron-left.png b/stylesheets/images/chevron-left.png deleted file mode 100644 index e103bdc..0000000 Binary files a/stylesheets/images/chevron-left.png and /dev/null differ diff --git a/stylesheets/images/chevron-right.png b/stylesheets/images/chevron-right.png deleted file mode 100644 index dac30f5..0000000 Binary files a/stylesheets/images/chevron-right.png and /dev/null differ